13 lines
226 B
Nix
13 lines
226 B
Nix
{ stdenvNoCC, callPackage }:
|
|
|
|
let
|
|
inherit (callPackage ./common.nix {}) name src;
|
|
|
|
in stdenvNoCC.mkDerivation {
|
|
name = name + "-pthreads";
|
|
inherit src;
|
|
|
|
preConfigure = ''
|
|
cd mingw-w64-libraries/winpthreads
|
|
'';
|
|
}
|