1
0
Fork 0
mirror of https://github.com/lopsided98/nix-ros-overlay.git synced 2025-07-19 08:31:07 +03:00
nix-ros-overlay/distros/melodic/ros-introspection/default.nix

26 lines
833 B
Nix
Raw Normal View History

2019-03-21 00:14:59 -04:00
# Copyright 2020 Open Source Robotics Foundation
2019-03-21 00:14:59 -04:00
# Distributed under the terms of the BSD license
{ lib, buildRosPackage, fetchurl, catkin, pythonPackages, roslint, rosmsg }:
2019-03-21 00:14:59 -04:00
buildRosPackage {
pname = "ros-melodic-ros-introspection";
version = "1.0.3-r1";
2019-03-21 00:14:59 -04:00
src = fetchurl {
url = "https://github.com/wu-robotics/roscompile-release/archive/release/melodic/ros_introspection/1.0.3-1.tar.gz";
name = "1.0.3-1.tar.gz";
sha256 = "6f75ce2caaf7ffc9c947a88644363a82ff8a6cd5be4f3abb933d073e8995daf1";
2019-03-21 00:14:59 -04:00
};
buildType = "catkin";
2019-03-21 00:14:59 -04:00
checkInputs = [ roslint ];
propagatedBuildInputs = [ pythonPackages.pyyaml pythonPackages.requests pythonPackages.rospkg rosmsg ];
2019-03-21 00:14:59 -04:00
nativeBuildInputs = [ catkin ];
meta = {
description = ''The ros_introspection package'';
license = with lib.licenses; [ bsdOriginal ];
2019-03-21 00:14:59 -04:00
};
}