1
0
Fork 0
mirror of https://github.com/lopsided98/nix-ros-overlay.git synced 2025-07-16 23:21:00 +03:00
nix-ros-overlay/melodic/ros-type-introspection/default.nix

25 lines
918 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, roscpp, roscpp-serialization, abseil-cpp, rostime }:
buildRosPackage {
pname = "ros-melodic-ros-type-introspection";
version = "1.3.2-r1";
2019-03-21 00:14:59 -04:00
src = fetchurl {
url = https://github.com/facontidavide/ros_type_introspection-release/archive/release/melodic/ros_type_introspection/1.3.2-1.tar.gz;
sha256 = "df29da398149ab315bb922a74ef712841a546a8056554e3d9bc54ff0169e9eb3";
2019-03-21 00:14:59 -04:00
};
buildInputs = [ abseil-cpp roscpp rostime roscpp-serialization ];
2019-03-21 00:14:59 -04:00
propagatedBuildInputs = [ abseil-cpp roscpp rostime roscpp-serialization ];
nativeBuildInputs = [ catkin ];
2019-03-21 00:14:59 -04:00
meta = {
description = ''The ros_type_introspection package allows the user to parse and deserialize
ROS messages which type is unknown at compilation time.'';
#license = lib.licenses.BSD;
};
}