mirror of
https://github.com/lopsided98/nix-ros-overlay.git
synced 2025-06-10 17:54:49 +03:00
pythonPackages.wstool: fix meta
This commit is contained in:
parent
bf670f244a
commit
e37db29017
1 changed files with 5 additions and 3 deletions
|
@ -1,4 +1,4 @@
|
|||
{ buildPythonPackage, fetchPypi, vcstools, pyyaml }:
|
||||
{ lib, buildPythonPackage, fetchPypi, vcstools, pyyaml }:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "wstool";
|
||||
|
@ -11,8 +11,10 @@ buildPythonPackage rec {
|
|||
|
||||
propagatedBuildInputs = [ vcstools pyyaml ];
|
||||
|
||||
meta = {
|
||||
meta = with lib; {
|
||||
description = "A tool for managing a workspace of multiple heterogenous SCM repositories";
|
||||
homepage = http://wiki.ros.org/wstool;
|
||||
homepage = "http://wiki.ros.org/wstool";
|
||||
license = licenses.bsd3;
|
||||
maintainers = with maintainers; [ lopsided98 ];
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue