cd3fda3def
Replaced undefined variable 'url' by the correct one 'pathname' svn path=/nixpkgs/trunk/; revision=28424
8 lines
166 B
Nix
8 lines
166 B
Nix
{stdenv}: {pathname, md5}: stdenv.mkDerivation {
|
|
name = baseNameOf (toString pathname);
|
|
builder = ./builder.sh;
|
|
pathname = pathname;
|
|
md5 = md5;
|
|
id = md5;
|
|
}
|