nixpkgs/pkgs/stdenv/mingw/simple-stdenv/default.nix

32 lines
560 B
Nix
Raw Normal View History

{ system
, name
, shell
, path
, extraEnv ? {}
, extraShellOptions ? []
}:
let {
body =
derivation ({
inherit system name;
initialPath = path;
builder = shell;
args = extraShellOptions ++ ["-e" ./builder.sh];
} // extraEnv)
// {
mkDerivation = attrs:
derivation ((removeAttrs attrs ["meta"]) // {
builder = shell;
args = extraShellOptions ++ ["-e" attrs.builder];
stdenv = body;
system = body.system;
}
// extraEnv);
inherit shell;
};
}