2017-06-19 21:30:17 +02:00
|
|
|
{ stdenv, callPackage, windows }:
|
2012-05-24 23:23:23 +02:00
|
|
|
|
2017-06-19 17:51:01 +02:00
|
|
|
stdenv.mkDerivation {
|
|
|
|
inherit (callPackage ./common.nix {}) name src;
|
2017-06-19 21:30:17 +02:00
|
|
|
buildInputs = [ windows.mingw_w64_headers ];
|
2012-05-24 23:23:23 +02:00
|
|
|
dontStrip = true;
|
2017-12-29 15:29:05 +01:00
|
|
|
hardeningDisable = [ "stackprotector" "fortify" ];
|
2018-08-07 16:20:13 +02:00
|
|
|
patches = [ ./osvi.patch ];
|
2018-08-10 17:51:18 +02:00
|
|
|
|
|
|
|
meta = {
|
|
|
|
platforms = stdenv.lib.platforms.windows;
|
|
|
|
};
|
2017-06-19 17:51:01 +02:00
|
|
|
}
|