nixpkgs/pkgs/development/compilers/visual-c++/test/default.nix

11 lines
186 B
Nix
Raw Normal View History

{stdenv, fetchurl, visualcpp}:
assert stdenv.system == "i686-cygwin";
stdenv.mkDerivation {
name = "win32-hello";
builder = ./builder.sh;
src = ./hello.c;
inherit visualcpp;
}