nixpkgs/pkgs/os-specific/windows/mingwrt/default.nix
John Ericson 9be118223b misc mingw: Get rid of crossConfig and clean up
Style of dual implementation and headers derivations is take from
bb7067f882bf3c53ea68780a8ec0a7117f563253.
2018-05-14 20:32:42 -04:00

8 lines
178 B
Nix

{ stdenv, callPackage }:
stdenv.mkDerivation {
inherit (callPackage ./common.nix {}) name src meta;
dontStrip = true;
hardeningDisable = [ "stackprotector" "fortify" ];
}