From b0376d16a2a31b628458ac306a447b4968a332fc Mon Sep 17 00:00:00 2001 From: Eelco Dolstra Date: Tue, 9 Feb 2010 10:41:39 +0000 Subject: [PATCH] * Updated GNU hello to 2.5. This also gets rid of the unintentional "hello-2.3x26" commit. svn path=/nixpkgs/trunk/; revision=19877 --- pkgs/applications/misc/hello/ex-2/default.nix | 10 +++++----- 1 file 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 409ff3745c1c..ad153341a273 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 = {