* 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
This commit is contained in:
Eelco Dolstra
2006-06-05 22:03:52 +00:00
parent fef1bdfad1
commit 1a9b6bb4ad
6 changed files with 4404 additions and 21 deletions
@@ -1,5 +1,6 @@
source $stdenv/setup
source $visualcpp/setup
source $windowssdk/setup
ensureDir $out/bin
cl "$(cygpath -w $src)" /Fe"$(cygpath -w $out/bin/hello.exe)" user32.lib
@@ -1,4 +1,4 @@
{stdenv, fetchurl, visualcpp}:
{stdenv, fetchurl, visualcpp, windowssdk}:
assert stdenv.system == "i686-cygwin";
@@ -6,5 +6,5 @@ stdenv.mkDerivation {
name = "win32-hello";
builder = ./builder.sh;
src = ./hello.c;
inherit visualcpp;
inherit visualcpp windowssdk;
}