mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-02 15:41:48 +00:00
97202ee3b7
Moved all the shell fixes to fix-builder.sh, which is now always invoked. Added aterm to the list of packages provided by mingw.nix svn path=/nixpkgs/trunk/; revision=6152
11 lines
149 B
Nix
Executable File
11 lines
149 B
Nix
Executable File
let {
|
|
pkgs =
|
|
import ./all-packages.nix {
|
|
system = "i686-mingw";
|
|
};
|
|
|
|
body = {
|
|
inherit (pkgs) zlib getopt realCurl aterm;
|
|
};
|
|
}
|