mirror of
https://github.com/privatevoid-net/nix-super.git
synced 2024-11-10 16:26:18 +02:00
9 lines
154 B
Nix
9 lines
154 B
Nix
|
{system, url, md5}: derivation {
|
||
|
name = baseNameOf (toString url);
|
||
|
system = system;
|
||
|
builder = ./builder.sh;
|
||
|
url = url;
|
||
|
md5 = md5;
|
||
|
id = md5;
|
||
|
}
|