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/ros-introspection/default.nix

26 lines
786 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, roslint, catkin, rosmsg, pythonPackages }:
2019-03-21 00:14:59 -04:00
buildRosPackage {
pname = "ros-melodic-ros-introspection";
version = "1.0.1";
src = fetchurl {
url = "https://github.com/wu-robotics/roscompile-release/archive/release/melodic/ros_introspection/1.0.1-0.tar.gz";
name = "1.0.1-0.tar.gz";
2019-03-21 00:14:59 -04:00
sha256 = "becacb2e9cb821bffb018fe5bb49612b59152cd46067ab47a1fa5fbce2d9443a";
};
buildType = "catkin";
2019-03-21 00:14:59 -04:00
checkInputs = [ roslint ];
propagatedBuildInputs = [ rosmsg pythonPackages.requests ];
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
};
}