summary refs log blame commit diff
path: root/pkgs/os-specific/windows/mingw-w64/pthreads.nix
blob: bbcb028d3cbb6c9f46572ad161dbaf08eb218e4c (plain) (tree)
1
2
3
4
5
6
7
8
9
10
                      
 


                                      




                                      
{ stdenv, mingw_w64 }:

stdenv.mkDerivation {
  name = "${mingw_w64.name}-pthreads";
  inherit (mingw_w64) src meta;

  preConfigure = ''
    cd mingw-w64-libraries/winpthreads
  '';
}