Merge pull request #37883 from dtzWill/fix/use-npth-for-pth-musl

Use npth as "pth" for portability, for now only w/musl.
This commit is contained in:
Will Dietz 2018-03-26 14:08:40 -05:00 committed by GitHub
commit 45289b0921
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 1 deletions

View File

@ -11004,7 +11004,8 @@ with pkgs;
flatbuffers = callPackage ../development/libraries/flatbuffers { };
pth = callPackage ../development/libraries/pth { };
gnupth = callPackage ../development/libraries/pth { };
pth = if stdenv.hostPlatform.isMusl then npth else gnupth;
ptlib = callPackage ../development/libraries/ptlib {};