nixpkgs/pkgs/top-level/mingw.nix
Martin Bravenboer f0129a3f44 Fixes to support the new stdenvType
svn path=/nixpkgs/trunk/; revision=6242
2006-08-25 20:58:02 +00:00

12 lines
205 B
Nix
Executable file

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