nixpkgs/pkgs/os-specific/windows/mingw-w64/pthreads.nix
Bojan Nikolic db475df127 mingw-w64-pthreads: The C compiler is needed
It was a copy and paste error from the headers derivation. Also test in
release-cross.
2018-01-02 19:01:18 -05:00

14 lines
218 B
Nix

{ stdenv, callPackage }:
let
inherit (callPackage ./common.nix {}) name src;
in stdenv.mkDerivation {
name = name + "-pthreads";
inherit src;
preConfigure = ''
cd mingw-w64-libraries/winpthreads
'';
}