From 44624b40ef801dd1467a436905ebf05777b86821 Mon Sep 17 00:00:00 2001 From: Moritz Ulrich Date: Mon, 27 Oct 2014 12:47:45 +0100 Subject: [PATCH] egg2nix: Update to 0.4. Let's hope this is the latest version. --- pkgs/development/tools/egg2nix/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/tools/egg2nix/default.nix b/pkgs/development/tools/egg2nix/default.nix index 2d9fc57e88f..dd1c00116e4 100644 --- a/pkgs/development/tools/egg2nix/default.nix +++ b/pkgs/development/tools/egg2nix/default.nix @@ -4,12 +4,12 @@ # the tarball. Is there a nicer way than duplicating code? let - version = "0.3"; + version = "0.4"; in eggDerivation { src = fetchurl { url = "https://github.com/the-kenny/egg2nix/archive/${version}.tar.gz"; - sha256 = "1sv6v5a3a17lsyx1i9ajlvix0v8yzl0nnvv9da9c1k349w0fdijv"; + sha256 = "1xn79fgqxg0i47asjah31zi56v60is1n8d0cy8w4gbj0i41z7pvm"; }; name = "egg2nix-${version}";