yrd: init at 0.5.3

wip/yesman
Alexander Krupenkin 6 years ago
parent 4dc33d06b9
commit 82550c639e
No known key found for this signature in database
GPG Key ID: 0D0A7FA67911873E
  1. 27
      pkgs/tools/networking/yrd/default.nix
  2. 3
      pkgs/top-level/all-packages.nix

@ -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…
Cancel
Save