Merge pull request #40166 from akru/yrd-init

yrd: init at 0.5.3
This commit is contained in:
Matthew Justin Bauer 2018-05-18 21:49:55 -05:00 committed by GitHub
commit d1605c559b
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 30 additions and 0 deletions

View 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;
};
}

View file

@ -21474,4 +21474,7 @@ with pkgs;
inherit (recurseIntoAttrs (callPackages ../os-specific/bsd { }))
netbsd;
yrd = callPackage ../tools/networking/yrd { };
}