1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-12-18 02:46:28 +00:00
nixpkgs/pkgs-ng/build-support/fetchurl/default.fix
Eelco Dolstra 77d20ed799 * Updated to reflect the changes to the grammar.
svn path=/nixpkgs/trunk/; revision=464
2003-11-03 10:22:00 +00:00

10 lines
182 B
Plaintext

{stdenv}: {url, md5}: derivation {
name = baseNameOf (toString url);
system = stdenv.system;
builder = ./builder.sh;
stdenv = stdenv;
url = url;
md5 = md5;
id = md5;
}