summary refs log tree commit diff
path: root/pkgs/os-specific/windows/mingw-w64/pthreads.nix
blob: 1a33e8db07e8198147997a1faad49644a3bded71 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
{ stdenv, callPackage }:

let
  inherit (callPackage ./common.nix {}) name src;

in stdenv.mkDerivation {
  name = name + "-pthreads";
  inherit src;

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