Fixed error in build-support/fetchfile

Replaced undefined variable 'url' by the correct one 'pathname'

svn path=/nixpkgs/trunk/; revision=28424
This commit is contained in:
Ludovic Stordeur 2011-08-09 12:28:49 +00:00
parent 01be205d66
commit cd3fda3def

View file

@ -1,5 +1,5 @@
{stdenv}: {pathname, md5}: stdenv.mkDerivation {
name = baseNameOf (toString url);
name = baseNameOf (toString pathname);
builder = ./builder.sh;
pathname = pathname;
md5 = md5;