1
0
Fork 0
mirror of https://github.com/lopsided98/nix-ros-overlay.git synced 2025-07-14 14:10:37 +03:00
nix-ros-overlay/melodic/tuw-object-msgs/default.nix

23 lines
854 B
Nix
Raw Normal View History

2019-03-21 00:14:59 -04:00
# Copyright 2019 Open Source Robotics Foundation
# Distributed under the terms of the BSD license
{ lib, buildRosPackage, fetchurl, catkin, message-generation, message-runtime, std-msgs, geometry-msgs }:
buildRosPackage {
pname = "ros-melodic-tuw-object-msgs";
version = "0.0.13";
src = fetchurl {
url = https://github.com/tuw-robotics/tuw_msgs-release/archive/release/melodic/tuw_object_msgs/0.0.13-0.tar.gz;
sha256 = "cd872b1996ab016b75719c00f199bef95322fabf5efc964a169a6dd362fdec8f";
};
propagatedBuildInputs = [ std-msgs message-runtime geometry-msgs ];
nativeBuildInputs = [ std-msgs catkin message-generation geometry-msgs ];
meta = {
description = ''The tuw_object_msgs package. This pkg provides a set of messages used to detect, map and track objects of different types.'';
#license = lib.licenses.BSD;
};
}