91aebd8616
TODO: download and unpack into the Nix store Visual C++ (either from Visual C++ Express Edition or from the .NET 2.0 Framework SDK) and the Windows Platform SDK. The command line tools don't seem to need any registry settings... svn path=/nixpkgs/trunk/; revision=5369
8 lines
270 B
Bash
8 lines
270 B
Bash
source $stdenv/setup
|
|
|
|
ensureDir $out
|
|
cat > $out/setup <<EOF
|
|
export PATH="$vs8Path/VC/bin:$vs8Path/Common7/IDE:$sdkPath/bin:$PATH"
|
|
export LIB="$(cygpath -w -p "$vs8Path/VC/lib:$sdkPath/lib")"
|
|
export INCLUDE="$(cygpath -w -p "$sdkPath/include:$sdkPath/include/crt")"
|
|
EOF
|