1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-12-11 07:04:28 +00:00
nixpkgs/pkgs/os-specific/windows/mingw-w64/pthreads.nix
2018-08-10 12:05:04 -04:00

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
'';
}