mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-13 21:32:23 +03:00
Merge pull request #33357 from bnikolic/mingw64-pthreads
Correct derivation of pthreads on mingw64
This commit is contained in:
commit
0e3be421e3
@ -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 = {
|
||||
|
Loading…
Reference in New Issue
Block a user