Skip to content

Commit

Permalink
pythonPackages.kmsxx: fix build
Browse files Browse the repository at this point in the history
gcc7 build fails with "internal compiler error", use gcc6 instead
by inheriting stdenv from pkgs.kmsxx

(cherry picked from commit 2c84e34)
  • Loading branch information
xeji authored and Robert Schütz committed Apr 8, 2018
1 parent 53daaf5 commit df3a740
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion pkgs/top-level/python-packages.nix
Original file line number Diff line number Diff line change
Expand Up @@ -11930,7 +11930,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 { };

Expand Down

0 comments on commit df3a740

Please sign in to comment.