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:
commit
45289b0921
|
@ -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 {};
|
||||
|
||||
|
|
Loading…
Reference in New Issue