08d3840c94
svn path=/nixpkgs/trunk/; revision=5370
11 lines
186 B
Nix
11 lines
186 B
Nix
{stdenv, fetchurl, visualcpp}:
|
|
|
|
assert stdenv.system == "i686-cygwin";
|
|
|
|
stdenv.mkDerivation {
|
|
name = "win32-hello";
|
|
builder = ./builder.sh;
|
|
src = ./hello.c;
|
|
inherit visualcpp;
|
|
}
|