nix-super/corepkgs/fetchurl/default.nix

9 lines
136 B
Nix
Raw Normal View History

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