Merge pull request #33357 from bnikolic/mingw64-pthreads

Correct derivation of pthreads on mingw64
This commit is contained in:
John Ericson 2018-01-02 19:10:59 -05:00 committed by GitHub
commit 0e3be421e3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 2 deletions

@ -1,9 +1,9 @@
{ stdenvNoCC, callPackage }:
{ stdenv, callPackage }:
let
inherit (callPackage ./common.nix {}) name src;
in stdenvNoCC.mkDerivation {
in stdenv.mkDerivation {
name = name + "-pthreads";
inherit src;

@ -41,6 +41,7 @@ let
libtool = nativePlatforms;
libunistring = nativePlatforms;
windows.wxMSW = nativePlatforms;
windows.mingw_w64_pthreads = nativePlatforms;
};
darwinCommon = {