From 429bde6218e1bd9216bd6f67bb51be2ebdbefd3c Mon Sep 17 00:00:00 2001 From: Astro Date: Tue, 3 Dec 2019 00:43:37 +0100 Subject: [PATCH] gnunet: override src with gnunet.git input --- gnunet.nix | 6 ++++-- jobsets.nix | 3 ++- 2 files changed, 6 insertions(+), 3 deletions(-) diff --git a/gnunet.nix b/gnunet.nix index 14b9064..6879bde 100644 --- a/gnunet.nix +++ b/gnunet.nix @@ -2,8 +2,10 @@ let pkgs = import { overlays = [ (import ) ]; }; + gnunet = pkgs.gnunet.overrideAttrs (_: { + src = ; + }); in -with pkgs; { - gnunet = lib.hydraJob gnunet; + gnunet = pkgs.lib.hydraJob gnunet; } diff --git a/jobsets.nix b/jobsets.nix index 6218a08..67b9822 100644 --- a/jobsets.nix +++ b/jobsets.nix @@ -92,7 +92,8 @@ let description = "gnu:net overlay"; nixexprpath = "gnunet.nix"; gitUrls = { - nixpkgs-gnunet = "https://ulrich.earth/code/nixpkgs-gnunet/ master 1"; + gnunet = "https://git.gnunet.org/gnunet.git master"; + nixpkgs-gnunet = "https://ulrich.earth/code/nixpkgs-gnunet/ master"; }; };