You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Below are two examples of projects that are easy to package with nix-init, except the CMakeLists.txt are wrongly stored in the src/ subfolder of the project, which also confuses Nix's CMake hooks. All I had to do to compile these projects after running nix-init was
add cmake to nativeBuildInputs
add `preConfigure = "cd src";
It's possible that this case could be caught by nix-init
Below are two examples of projects that are easy to package with
nix-init
, except the CMakeLists.txt are wrongly stored in thesrc/
subfolder of the project, which also confuses Nix's CMake hooks. All I had to do to compile these projects after runningnix-init
wascmake
tonativeBuildInputs
It's possible that this case could be caught by
nix-init
The text was updated successfully, but these errors were encountered: