Merge pull request #869 from DarkKirb/nix-ecm

fix: Add extra-cmake-modules to the nix build
This commit is contained in:
flow 2022-07-03 11:07:11 -03:00 committed by GitHub
commit 81d52b6169
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -15,6 +15,7 @@
, libGL
, msaClientID ? ""
, extraJDKs ? [ ]
, extra-cmake-modules
# flake
, self
@ -47,7 +48,7 @@ stdenv.mkDerivation rec {
src = lib.cleanSource self;
nativeBuildInputs = [ cmake ninja jdk file wrapQtAppsHook ];
nativeBuildInputs = [ cmake extra-cmake-modules ninja jdk file wrapQtAppsHook ];
buildInputs = [ qtbase quazip zlib ];
dontWrapQtApps = true;