aboutsummaryrefslogtreecommitdiff
path: root/nix
diff options
context:
space:
mode:
authorCharlotte 🦝 Delenk <lotte@chir.rs>2022-07-03 10:28:41 +0100
committerCharlotte 🦝 Delenk <lotte@chir.rs>2022-07-03 10:30:45 +0100
commit471d6d603100e3668322d6da28ed1e1beee95456 (patch)
treeda727b69bd27288002599cdf38af54bb866f9dae /nix
parentb90d6b0f26613c5b4a4a1f20e7646ffeefe05c83 (diff)
downloadPrismLauncher-471d6d603100e3668322d6da28ed1e1beee95456.tar.gz
PrismLauncher-471d6d603100e3668322d6da28ed1e1beee95456.tar.bz2
PrismLauncher-471d6d603100e3668322d6da28ed1e1beee95456.zip
fix: Add extra-cmake-modules to the nix build
Signed-off-by: Charlotte 🦝 Delenk <lotte@chir.rs>
Diffstat (limited to 'nix')
-rw-r--r--nix/default.nix3
1 files changed, 2 insertions, 1 deletions
diff --git a/nix/default.nix b/nix/default.nix
index d6aa370c..94b74354 100644
--- a/nix/default.nix
+++ b/nix/default.nix
@@ -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;