nixpkgs/pkgs/stdenv/mingw/simple-stdenv/default.nix
Rob Vermaas 290d47d0f3 trying to fix mingw setup
svn path=/nixpkgs/trunk/; revision=18337
2009-11-13 10:30:29 +00:00

32 lines
661 B
Nix

{ 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]; # (if attrs ? builder then [attrs.builder] else [ ../fix-builder.sh ../default-builder.sh] ) ;
stdenv = body;
system = body.system;
}
// extraEnv);
inherit shell;
};
}