Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: da72ac20928e
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: d1605c559b73
Choose a head ref
  • 2 commits
  • 2 files changed
  • 2 contributors

Commits on May 16, 2018

  1. yrd: init at 0.5.3

    akru committed May 16, 2018
    Copy the full SHA
    82550c6 View commit details

Commits on May 19, 2018

  1. Merge pull request #40166 from akru/yrd-init

    yrd: init at 0.5.3
    matthewbauer authored May 19, 2018

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    d1605c5 View commit details
Showing with 30 additions and 0 deletions.
  1. +27 −0 pkgs/tools/networking/yrd/default.nix
  2. +3 −0 pkgs/top-level/all-packages.nix
27 changes: 27 additions & 0 deletions pkgs/tools/networking/yrd/default.nix
Original file line number Diff line number Diff line change
@@ -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;
};
}
3 changes: 3 additions & 0 deletions pkgs/top-level/all-packages.nix
Original file line number Diff line number Diff line change
@@ -21474,4 +21474,7 @@ with pkgs;

inherit (recurseIntoAttrs (callPackages ../os-specific/bsd { }))
netbsd;

yrd = callPackage ../tools/networking/yrd { };

}