about summary refs log tree commit diff
path: root/pkgs/development/tools/egg2nix
diff options
context:
space:
mode:
authorMoritz Ulrich <moritz@tarn-vedra.de>2014-10-27 01:13:23 +0100
committerMoritz Ulrich <moritz@tarn-vedra.de>2014-10-27 01:13:23 +0100
commit3a0a3893129d61badd11bda8c093e1553e46c99a (patch)
treec02cf49c365246fe6a204746f935cb47621bc11d /pkgs/development/tools/egg2nix
parent6ff97809c5fd27cefc3e68a6d001333bb8a3a231 (diff)
downloadnixlib-3a0a3893129d61badd11bda8c093e1553e46c99a.tar
nixlib-3a0a3893129d61badd11bda8c093e1553e46c99a.tar.gz
nixlib-3a0a3893129d61badd11bda8c093e1553e46c99a.tar.bz2
nixlib-3a0a3893129d61badd11bda8c093e1553e46c99a.tar.lz
nixlib-3a0a3893129d61badd11bda8c093e1553e46c99a.tar.xz
nixlib-3a0a3893129d61badd11bda8c093e1553e46c99a.tar.zst
nixlib-3a0a3893129d61badd11bda8c093e1553e46c99a.zip
Update egg2nix to 0.3.
Diffstat (limited to 'pkgs/development/tools/egg2nix')
-rw-r--r--pkgs/development/tools/egg2nix/default.nix11
1 files changed, 7 insertions, 4 deletions
diff --git a/pkgs/development/tools/egg2nix/default.nix b/pkgs/development/tools/egg2nix/default.nix
index 7b1cc682d3bf..2d9fc57e88f7 100644
--- a/pkgs/development/tools/egg2nix/default.nix
+++ b/pkgs/development/tools/egg2nix/default.nix
@@ -3,19 +3,22 @@
 # Note: This mostly reimplements the default.nix already contained in
 # the tarball. Is there a nicer way than duplicating code?
 
+let
+  version = "0.3";
+in
 eggDerivation {
   src = fetchurl {
-    url = "https://github.com/the-kenny/egg2nix/archive/0.2.tar.gz";
-    sha256 = "051nsy30diapcl687pyfrvcyqh5h55fijqjhykra2nah30bmf0k0";
+    url = "https://github.com/the-kenny/egg2nix/archive/${version}.tar.gz";
+    sha256 = "1sv6v5a3a17lsyx1i9ajlvix0v8yzl0nnvv9da9c1k349w0fdijv";
   };
 
-  name = "egg2nix-0.2";
+  name = "egg2nix-${version}";
   buildInputs = with chickenEggs; [
     matchable http-client
   ];
 
   meta = {
-    description = "Generate nix-expression from Chicken Scheme eggs";
+    description = "Generate nix-expression from CHICKEN scheme eggs";
     homepage = https://github.com/the-kenny/egg2nix;
     license = stdenv.lib.licenses.bsd3;
     platforms = stdenv.lib.platforms.unix;