summary refs log tree commit diff
path: root/pkgs/applications/misc/hello
diff options
context:
space:
mode:
authorEelco Dolstra <eelco.dolstra@logicblox.com>2010-02-09 10:41:39 +0000
committerEelco Dolstra <eelco.dolstra@logicblox.com>2010-02-09 10:41:39 +0000
commitb0376d16a2a31b628458ac306a447b4968a332fc (patch)
tree268c7c0c4257c82e5162415ee128694d88435312 /pkgs/applications/misc/hello
parent66e655fce814963cba27cd2fcba8588a842b9000 (diff)
* Updated GNU hello to 2.5. This also gets rid of the unintentional
  "hello-2.3x26" commit.

svn path=/nixpkgs/trunk/; revision=19877
Diffstat (limited to 'pkgs/applications/misc/hello')
-rw-r--r--pkgs/applications/misc/hello/ex-2/default.nix10
1 files changed, 5 insertions, 5 deletions
diff --git a/pkgs/applications/misc/hello/ex-2/default.nix b/pkgs/applications/misc/hello/ex-2/default.nix
index 409ff3745c1ca..ad153341a2737 100644
--- a/pkgs/applications/misc/hello/ex-2/default.nix
+++ b/pkgs/applications/misc/hello/ex-2/default.nix
@@ -1,11 +1,11 @@
-{stdenv, fetchurl}:
+{ stdenv, fetchurl }:
 
-stdenv.mkDerivation {
-  name = "hello-2.3x26";
+stdenv.mkDerivation rec {
+  name = "hello-2.5";
   
   src = fetchurl {
-    url = mirror://gnu/hello/hello-2.3.tar.bz2;
-    sha256 = "0c7vijq8y68bpr7g6dh1gny0bff8qq81vnp4ch8pjzvg56wb3js1";
+    url = "mirror://gnu/hello/${name}.tar.gz";
+    sha256 = "0in467phypnis2ify1gkmvc5l2fxyz3s4xss7g74gwk279ylm4r2";
   };
 
   meta = {