1
0
Fork 0
mirror of https://github.com/lopsided98/nix-ros-overlay.git synced 2025-07-17 07:30:25 +03:00
nix-ros-overlay/melodic/derived-object-msgs/default.nix

24 lines
877 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, shape-msgs, catkin, message-generation, radar-msgs, message-runtime, std-msgs, geometry-msgs }:
buildRosPackage {
pname = "ros-melodic-derived-object-msgs";
version = "2.3.1";
src = fetchurl {
url = https://github.com/astuff/astuff_sensor_msgs-release/archive/release/melodic/derived_object_msgs/2.3.1-0.tar.gz;
sha256 = "5b5450bf1c0968aa5b7f6190cb26b07b11563d0041e410d322ceff66567b5a23";
};
buildInputs = [ shape-msgs message-generation radar-msgs std-msgs geometry-msgs ];
2019-03-21 00:14:59 -04:00
propagatedBuildInputs = [ shape-msgs radar-msgs message-runtime std-msgs geometry-msgs ];
nativeBuildInputs = [ catkin ];
2019-03-21 00:14:59 -04:00
meta = {
description = ''Abstracted Messages from Perception Modalities'';
#license = lib.licenses.MIT;
};
}