Hello,
i have troubles getting a project of mine to work in nixos, so as a last resort I wanted to use a FHS-User environment for that project.
Since it is a cuda project, I used the FHSUserEnvironment example from here:
https://nixos.wiki/wiki/Nvidia
But in addition, i also need the boost library, so i added it to the targetPkgs set
targetPkgs = pkgs: with pkgs; [ ... boost167 ...];
This puts the libboost_*.so libraries under /usr/lib,
but the header files are missing !
I read about boost being a split package, and maybe it has something to do with that,
but I can’t figure out how I could fix that.
Does anybody has an idea ?
Thanks!