add gnunet

This commit is contained in:
Astro 2019-09-24 20:40:29 +02:00
parent 82a4dfd7fd
commit b1292136bc
2 changed files with 16 additions and 0 deletions

9
gnunet.nix Normal file
View File

@ -0,0 +1,9 @@
let
pkgs = import <nixpkgs> {
overlays = [ (import <nixpkgs-gnunet>) ];
};
in
with pkgs;
{
gnunet = lib.hydraJob gnunet;
}

View File

@ -69,6 +69,13 @@ let
};
};
gnunet = mkJobset {
description = "gnu:net overlay";
nixexprpath = "gnunet.nix";
gitUrls = {
nixpkgs-gnunet = "https://ulrich.earth/code/nixpkgs-gnunet/ master 1";
};
};
};
jobsetsJson = pkgs.writeText "jobsets.json" (builtins.toJSON jobsets );