k3d: Fix build: Use the same GCC version for boost dependency

This commit is contained in:
Scott Worley 2020-04-17 13:59:06 -07:00
parent 10100a97c8
commit 4328c32713

View file

@ -20136,7 +20136,13 @@ in
k3d = callPackage ../applications/graphics/k3d {
inherit (pkgs.gnome2) gtkglext;
stdenv = gcc6Stdenv;
boost = boost155.override { enablePython = true; };
boost = boost155.override {
enablePython = true;
stdenv = gcc6Stdenv;
buildPackages = buildPackages // {
stdenv = gcc6Stdenv;
};
};
};
k3s = callPackage ../applications/networking/cluster/k3s {};