nixpkgs/pkgs/development/compilers/visual-c++/test/default.nix
Eelco Dolstra 08d3840c94 * A Hello World GUI application compiled with VC++.
svn path=/nixpkgs/trunk/; revision=5370
2006-06-02 10:09:19 +00:00

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;
}