1
0
Fork 0
mirror of https://github.com/lopsided98/nix-ros-overlay.git synced 2025-07-14 22:20:34 +03:00
nix-ros-overlay/melodic/ros-type-introspection/default.nix
2019-04-18 01:46:07 -04:00

24 lines
918 B
Nix

# 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";
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";
};
buildInputs = [ abseil-cpp roscpp rostime roscpp-serialization ];
propagatedBuildInputs = [ abseil-cpp roscpp rostime roscpp-serialization ];
nativeBuildInputs = [ catkin ];
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;
};
}