mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-05 17:56:46 +01:00
10 lines
197 B
Nix
10 lines
197 B
Nix
|
{stdenv}: {pathname, md5}: derivation {
|
||
|
name = baseNameOf (toString url);
|
||
|
system = stdenv.system;
|
||
|
builder = ./builder.sh;
|
||
|
stdenv = stdenv;
|
||
|
pathname = pathname;
|
||
|
md5 = md5;
|
||
|
id = md5;
|
||
|
}
|