mirror of
https://github.com/lopsided98/nix-ros-overlay.git
synced 2025-07-14 14:10:37 +03:00
23 lines
982 B
Nix
23 lines
982 B
Nix
![]() |
|
||
|
# Copyright 2019 Open Source Robotics Foundation
|
||
|
# Distributed under the terms of the BSD license
|
||
|
|
||
|
{ lib, buildRosPackage, fetchurl, shape-msgs, actionlib-msgs, sensor-msgs, catkin, message-generation, message-runtime, std-msgs, geometry-msgs }:
|
||
|
buildRosPackage {
|
||
|
pname = "ros-melodic-object-recognition-msgs";
|
||
|
version = "0.4.1";
|
||
|
|
||
|
src = fetchurl {
|
||
|
url = https://github.com/ros-gbp/object_recognition_msgs-release/archive/release/melodic/object_recognition_msgs/0.4.1-0.tar.gz;
|
||
|
sha256 = "0d4a39404ca6ce3fe26eb6a00df0edf208a58651c7605d42f20c9c6a2df9be72";
|
||
|
};
|
||
|
|
||
|
propagatedBuildInputs = [ shape-msgs message-runtime actionlib-msgs std-msgs sensor-msgs geometry-msgs ];
|
||
|
nativeBuildInputs = [ shape-msgs message-generation actionlib-msgs std-msgs sensor-msgs catkin geometry-msgs ];
|
||
|
|
||
|
meta = {
|
||
|
description = ''Object_recognition_msgs contains the ROS message and the actionlib definition used in object_recognition_core'';
|
||
|
#license = lib.licenses.BSD;
|
||
|
};
|
||
|
}
|