nixpkgs/pkgs/os-specific/windows/mingw-w64/pthreads.nix

11 lines
185 B
Nix
Raw Normal View History

2018-08-10 18:00:49 +02:00
{ stdenv, mingw_w64 }:
2018-08-10 18:00:49 +02:00
stdenv.mkDerivation {
name = "${mingw_w64.name}-pthreads";
inherit (mingw_w64) src meta;
preConfigure = ''
cd mingw-w64-libraries/winpthreads
'';
}