744665e3c4
This is apparently a typo that has not been fixed. Also remove unused configureFlags.
16 lines
242 B
Nix
16 lines
242 B
Nix
{ stdenvNoCC, callPackage }:
|
|
|
|
let
|
|
inherit (callPackage ./common.nix {}) name src;
|
|
|
|
in stdenvNoCC.mkDerivation {
|
|
name = name + "-headers";
|
|
inherit src;
|
|
|
|
patches = [ ./osvi.patch ];
|
|
|
|
preConfigure = ''
|
|
cd mingw-w64-headers
|
|
'';
|
|
}
|