* 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:
@@ -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;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user