forked from mirrors/nixpkgs
2e0ebc0532
Do this because it is built with the static stage
9 lines
229 B
Nix
9 lines
229 B
Nix
{ stdenv, callPackage, windows }:
|
|
|
|
stdenv.mkDerivation {
|
|
inherit (callPackage ./common.nix {}) name src;
|
|
buildInputs = [ windows.mingw_w64_headers ];
|
|
dontStrip = true;
|
|
hardeningDisable = [ "stackprotector" "fortify" ];
|
|
}
|