From b1292136bcfcfb0e852636f2741987c5f9885f4f Mon Sep 17 00:00:00 2001 From: Astro Date: Tue, 24 Sep 2019 20:40:29 +0200 Subject: [PATCH] add gnunet --- gnunet.nix | 9 +++++++++ jobsets.nix | 7 +++++++ 2 files changed, 16 insertions(+) create mode 100644 gnunet.nix diff --git a/gnunet.nix b/gnunet.nix new file mode 100644 index 0000000..14b9064 --- /dev/null +++ b/gnunet.nix @@ -0,0 +1,9 @@ +let + pkgs = import { + overlays = [ (import ) ]; + }; +in +with pkgs; +{ + gnunet = lib.hydraJob gnunet; +} diff --git a/jobsets.nix b/jobsets.nix index 9b17559..36b5e67 100644 --- a/jobsets.nix +++ b/jobsets.nix @@ -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 );