From 8eceafc7551f93def645bdb9336c6300e65902d1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Llu=C3=ADs=20Batlle=20i=20Rossell?= <viric@vicerveza.homeunix.net> Date: Fri, 30 Jul 2010 17:42:52 +0000 Subject: [PATCH] Fixing the name of 'confuse'; now it includes the version. svn path=/nixpkgs/trunk/; revision=22829 --- pkgs/development/libraries/confuse/default.nix | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/pkgs/development/libraries/confuse/default.nix b/pkgs/development/libraries/confuse/default.nix index c1702bae92aa..7291aa5eb385 100644 --- a/pkgs/development/libraries/confuse/default.nix +++ b/pkgs/development/libraries/confuse/default.nix @@ -1,10 +1,9 @@ {stdenv, fetchurl}: stdenv.mkDerivation rec { - name = "confuse"; - version = "2.7"; + name = "confuse-2.7"; src = fetchurl { - url = "http://savannah.nongnu.org/download/confuse/${name}-${version}.tar.gz"; + url = "http://savannah.nongnu.org/download/confuse/${name}.tar.gz"; sha256 = "0y47r2ashz44wvnxdb18ivpmj8nxhw3y9bf7v9w0g5byhgyp89g3"; };