mirror of
https://github.com/lopsided98/nix-ros-overlay.git
synced 2025-07-14 14:10:37 +03:00
22 lines
628 B
Nix
22 lines
628 B
Nix
{ lib, buildPythonPackage, fetchPypi, makeWrapper, vcstools, pyyaml, rosdistro
|
|
, catkin-pkg, wstool, rospkg }:
|
|
|
|
buildPythonPackage rec {
|
|
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";
|
|
license = licenses.bsd3;
|
|
maintainers = with maintainers; [ lopsided98 ];
|
|
};
|
|
}
|