nixpkgs/pkgs/development/compilers/visual-c++/test/default.nix
Eelco Dolstra 1a9b6bb4ad * Microsoft Windows SDK, purified. Small problem: building the SDK
takes huge amounts of temporary disk space (almost 2 GB).  Oh well.

svn path=/nixpkgs/trunk/; revision=5386
2006-06-05 22:03:52 +00:00

11 lines
209 B
Nix

{stdenv, fetchurl, visualcpp, windowssdk}:
assert stdenv.system == "i686-cygwin";
stdenv.mkDerivation {
name = "win32-hello";
builder = ./builder.sh;
src = ./hello.c;
inherit visualcpp windowssdk;
}