nixpkgs/pkgs/build-support/fetchfile/default.nix
Ludovic Stordeur cd3fda3def Fixed error in build-support/fetchfile
Replaced undefined variable 'url' by the correct one 'pathname'

svn path=/nixpkgs/trunk/; revision=28424
2011-08-09 12:28:49 +00:00

8 lines
166 B
Nix

{stdenv}: {pathname, md5}: stdenv.mkDerivation {
name = baseNameOf (toString pathname);
builder = ./builder.sh;
pathname = pathname;
md5 = md5;
id = md5;
}