Skip to content

Commit

Permalink
remove boost version pin
Browse files Browse the repository at this point in the history
  • Loading branch information
tmayoff committed Dec 30, 2024
1 parent dccb771 commit 5e344f7
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,6 @@
inherit system overlays;
};

boost = pkgs.boost185;

flecs = pkgs.stdenv.mkDerivation {
name = "flecs";
src = pkgs.fetchFromGitHub {
Expand Down Expand Up @@ -129,8 +127,8 @@
++ rawBuildInputs;

SPIRV_INCLUDEDIR = "${pkgs.lib.getDev pkgs.spirv-headers}";
BOOST_INCLUDEDIR = "${pkgs.lib.getDev boost}/include";
BOOST_LIBRARYDIR = "${pkgs.lib.getLib boost}/lib";
BOOST_INCLUDEDIR = "${pkgs.lib.getDev pkgs.boost}/include";
BOOST_LIBRARYDIR = "${pkgs.lib.getLib pkgs.boost}/lib";

shellHook = ''
export VK_ICD_FILENAMES=$(nixVulkanIntel printenv VK_ICD_FILENAMES)
Expand Down

0 comments on commit 5e344f7

Please sign in to comment.