mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-01 15:11:25 +00:00
yrd: init at 0.5.3
This commit is contained in:
parent
4dc33d06b9
commit
82550c639e
27
pkgs/tools/networking/yrd/default.nix
Normal file
27
pkgs/tools/networking/yrd/default.nix
Normal file
@ -0,0 +1,27 @@
|
||||
{ stdenv, fetchFromGitHub, pythonPackages }:
|
||||
|
||||
let
|
||||
pname = "yrd";
|
||||
version = "0.5.3";
|
||||
sha256 = "1yx1hr8z4cvlb3yi24dwafs0nxq41k4q477jc9q24w61a0g662ps";
|
||||
|
||||
in pythonPackages.buildPythonApplication {
|
||||
name = "${pname}-${version}";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "kpcyrd";
|
||||
repo = "${pname}";
|
||||
rev = "v${version}";
|
||||
inherit sha256;
|
||||
};
|
||||
|
||||
propagatedBuildInputs = with pythonPackages; [ argh ];
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
description = "Cjdns swiss army knife";
|
||||
maintainers = with maintainers; [ akru ];
|
||||
platforms = platforms.linux;
|
||||
license = licenses.gpl3;
|
||||
homepage = https://github.com/kpcyrd/yrd;
|
||||
};
|
||||
}
|
@ -21502,4 +21502,7 @@ with pkgs;
|
||||
|
||||
inherit (recurseIntoAttrs (callPackages ../os-specific/bsd { }))
|
||||
netbsd;
|
||||
|
||||
yrd = callPackage ../tools/networking/yrd { };
|
||||
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user