1a9b6bb4ad
takes huge amounts of temporary disk space (almost 2 GB). Oh well. svn path=/nixpkgs/trunk/; revision=5386
11 lines
209 B
Nix
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;
|
|
}
|