3
0
Fork 0
forked from mirrors/nixpkgs

Fixing the name of 'confuse'; now it includes the version.

svn path=/nixpkgs/trunk/; revision=22829
This commit is contained in:
Lluís Batlle i Rossell 2010-07-30 17:42:52 +00:00
parent 4bf5b0d36b
commit 8eceafc755

View file

@ -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";
};