guix/corepkgs/fetchurl/default.nix
Eelco Dolstra ab0bc4999a * Maintain integrity of the substitute and successor mappings when
deleting a path in the store.
* Allow absolute paths in Nix expressions.
* Get nix-prefetch-url to work again.
* Various other fixes.
2003-11-22 18:45:56 +00:00

9 lines
154 B
Nix

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