ab0bc4999a
deleting a path in the store. * Allow absolute paths in Nix expressions. * Get nix-prefetch-url to work again. * Various other fixes.
8 lines
154 B
Nix
8 lines
154 B
Nix
{system, url, md5}: derivation {
|
|
name = baseNameOf (toString url);
|
|
system = system;
|
|
builder = ./builder.sh;
|
|
url = url;
|
|
md5 = md5;
|
|
id = md5;
|
|
}
|