mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-20 00:53:12 +03:00
11 lines
185 B
Nix
11 lines
185 B
Nix
{ stdenv, mingw_w64 }:
|
|
|
|
stdenv.mkDerivation {
|
|
name = "${mingw_w64.name}-pthreads";
|
|
inherit (mingw_w64) src meta;
|
|
|
|
preConfigure = ''
|
|
cd mingw-w64-libraries/winpthreads
|
|
'';
|
|
}
|