forked from mirrors/nixpkgs
pythonPackages.kmsxx: fix build
gcc7 build fails with "internal compiler error", use gcc6 instead by inheriting stdenv from pkgs.kmsxx
This commit is contained in:
parent
0426d9001f
commit
2c84e347ee
|
@ -11918,7 +11918,11 @@ in {
|
|||
pika-pool = callPackage ../development/python-modules/pika-pool { };
|
||||
platformio = callPackage ../development/python-modules/platformio { };
|
||||
|
||||
kmsxx = callPackage ../development/libraries/kmsxx { };
|
||||
kmsxx = (callPackage ../development/libraries/kmsxx {
|
||||
inherit (pkgs.kmsxx) stdenv;
|
||||
}).overrideAttrs (oldAttrs: {
|
||||
name = "${python.libPrefix}-${pkgs.kmsxx.name}";
|
||||
});
|
||||
|
||||
pybase64 = callPackage ../development/python-modules/pybase64 { };
|
||||
|
||||
|
|
Loading…
Reference in a new issue