Skip to content

Commit

Permalink
k3d: Fix build: Use the same GCC version for boost dependency
Browse files Browse the repository at this point in the history
  • Loading branch information
chkno committed Apr 17, 2020
1 parent 10100a9 commit 4328c32
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion pkgs/top-level/all-packages.nix
Original file line number Diff line number Diff line change
Expand Up @@ -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 {};
Expand Down

0 comments on commit 4328c32

Please sign in to comment.