2020-05-23 15:15:06 -04:00
|
|
|
|
2025-01-03 13:42:37 +00:00
|
|
|
# Copyright 2025 Open Source Robotics Foundation
|
2020-05-23 15:15:06 -04:00
|
|
|
# Distributed under the terms of the BSD license
|
|
|
|
|
|
|
|
{ lib, buildRosPackage, fetchurl, catkin, cv-bridge, geometry-msgs, message-filters, message-generation, message-runtime, roscpp, sensor-msgs, std-msgs }:
|
|
|
|
buildRosPackage {
|
|
|
|
pname = "ros-noetic-posedetection-msgs";
|
|
|
|
version = "4.3.2-r1";
|
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "https://github.com/tork-a/jsk_common_msgs-release/archive/release/noetic/posedetection_msgs/4.3.2-1.tar.gz";
|
|
|
|
name = "4.3.2-1.tar.gz";
|
|
|
|
sha256 = "9b7873709badd4ba3d027944f28f7eb11e5f79d8a9bfde2bcb5f5dd663170938";
|
|
|
|
};
|
|
|
|
|
|
|
|
buildType = "catkin";
|
2022-11-04 19:29:56 -04:00
|
|
|
buildInputs = [ catkin message-generation ];
|
2020-05-23 15:15:06 -04:00
|
|
|
propagatedBuildInputs = [ cv-bridge geometry-msgs message-filters message-runtime roscpp sensor-msgs std-msgs ];
|
|
|
|
nativeBuildInputs = [ catkin ];
|
|
|
|
|
|
|
|
meta = {
|
2024-03-23 14:09:26 +00:00
|
|
|
description = "posedetection_msgs provides messages and services to facilitate passing pose detection results and features.";
|
2020-05-23 15:15:06 -04:00
|
|
|
license = with lib.licenses; [ bsdOriginal ];
|
|
|
|
};
|
|
|
|
}
|