nixpkgs/pkgs/top-level/mingw.nix
Martin Bravenboer 97202ee3b7 Patch for aterm library on mingw (see meta-devel-list)
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
2006-08-17 15:33:49 +00:00

11 lines
149 B
Nix
Executable file

let {
pkgs =
import ./all-packages.nix {
system = "i686-mingw";
};
body = {
inherit (pkgs) zlib getopt realCurl aterm;
};
}