Add missing cmake dependency to Nix build (#17968)
cmake is required during build of dependecies and thus needs to be supplied in nativeBuildInputs (dependecies required for build not during runtime). This fixes (sandboxed) nix builds of the project. Release Notes: - N/A
This commit is contained in:
parent
bdca342cdc
commit
51faf4a1cd
1 changed files with 2 additions and 0 deletions
|
@ -28,6 +28,7 @@
|
|||
stdenvAdapters,
|
||||
nix-gitignore,
|
||||
withGLES ? false,
|
||||
cmake,
|
||||
}: let
|
||||
includeFilter = path: type: let
|
||||
baseName = baseNameOf (toString path);
|
||||
|
@ -58,6 +59,7 @@
|
|||
pkg-config
|
||||
protobuf
|
||||
rustPlatform.bindgenHook
|
||||
cmake
|
||||
];
|
||||
|
||||
buildInputs = [
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue