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

23 lines
628 B
Nix
Raw Normal View History

2019-03-21 00:23:14 -04:00
{ lib, buildPythonPackage, fetchPypi, makeWrapper, vcstools, pyyaml, rosdistro
, catkin-pkg, wstool, rospkg }:
buildPythonPackage rec {
2019-03-21 00:23:14 -04:00
pname = "rosinstall";
version = "0.7.8";
src = fetchPypi {
inherit pname version;
sha256 = "0h7d8ynv44c68sbfn28xw4k18k3ip6252x7r7bqw6b5cifzhia1b";
};
nativeBuildInputs = [ makeWrapper ];
propagatedBuildInputs = [ vcstools pyyaml rosdistro catkin-pkg wstool rospkg ];
meta = with lib; {
description = "The installer for ROS";
homepage = "http://wiki.ros.org/rosinstall";
2019-03-21 00:23:14 -04:00
license = licenses.bsd3;
maintainers = with maintainers; [ lopsided98 ];
2019-03-21 00:23:14 -04:00
};
}