14 lines
337 B
Nix
14 lines
337 B
Nix
|
{ system, name, ver, url, sha256, configureArgs ? [], executable ? false } :
|
||
|
|
||
|
let fetchURL = import <nix/fetchurl.nix>;
|
||
|
|
||
|
in derivation {
|
||
|
inherit system configureArgs;
|
||
|
name = "trivial-bootstrap-${name}-${ver}";
|
||
|
dname = "${name}-${ver}";
|
||
|
src = fetchURL {
|
||
|
inherit url sha256 executable;
|
||
|
};
|
||
|
builder = ./trivial-builder.sh;
|
||
|
}
|