1
0
Fork 0
mirror of https://github.com/NixOS/nix synced 2025-06-27 12:41:15 +02:00

Remove boost env vars

https://github.com/NixOS/nixpkgs/issues/86131 is now fixed!
This commit is contained in:
John Ericson 2025-03-28 10:45:27 -04:00
parent ffdce51cd5
commit 459fb59493
4 changed files with 0 additions and 25 deletions

View file

@ -81,13 +81,6 @@ mkMesonLibrary (finalAttrs: {
(lib.mesonEnable "gc" enableGC)
];
env = {
# Needed for Meson to find Boost.
# https://github.com/NixOS/nixpkgs/issues/86131.
BOOST_INCLUDEDIR = "${lib.getDev boost}/include";
BOOST_LIBRARYDIR = "${lib.getLib boost}/lib";
};
meta = {
platforms = lib.platforms.unix ++ lib.platforms.windows;
};