From 2f7372b107d13d3aeff745eaabad040236131daf Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Wed, 14 Sep 2011 17:35:20 +0000 Subject: [PATCH] libgnomecups-0.2.3: cosmetic, no functional change svn path=/nixpkgs/trunk/; revision=29280 --- .../gnome-2.28/platform/libgnomecups/default.nix | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/pkgs/desktops/gnome-2.28/platform/libgnomecups/default.nix b/pkgs/desktops/gnome-2.28/platform/libgnomecups/default.nix index ec276578cb64..0521ce9058fb 100644 --- a/pkgs/desktops/gnome-2.28/platform/libgnomecups/default.nix +++ b/pkgs/desktops/gnome-2.28/platform/libgnomecups/default.nix @@ -1,13 +1,16 @@ {stdenv, fetchurl, pkgconfig, gtk, gettext, libxml2, intltool, libart_lgpl }: -stdenv.mkDerivation { +let name = "libgnomecups-0.2.3"; - +in +stdenv.mkDerivation { + inherit name; + src = fetchurl { - url = mirror://gnome/sources/libgnomecups/0.2/libgnomecups-0.2.3.tar.bz2; + url = "mirror://gnome/sources/libgnomecups/0.2/${name}.tar.bz2"; sha256 = "0a8xdaxzz2wc0n1fjcav65093gixzyac3948l8cxx1mk884yhc71"; }; - + buildInputs = [ pkgconfig gtk gettext intltool libart_lgpl ]; propagatedBuildInputs = [ libxml2 ]; }