aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorflow <flowlnlnln@gmail.com>2022-07-03 11:07:11 -0300
committerGitHub <noreply@github.com>2022-07-03 11:07:11 -0300
commit81d52b616903f221f4f011109de68567ec47578d (patch)
treed587c1bc2c92814378a47eb7e27ea7a0b1a7a632
parent5599b5a337c04e23fd1b0d1b4cc4b54906ab0657 (diff)
parent471d6d603100e3668322d6da28ed1e1beee95456 (diff)
downloadPrismLauncher-81d52b616903f221f4f011109de68567ec47578d.tar.gz
PrismLauncher-81d52b616903f221f4f011109de68567ec47578d.tar.bz2
PrismLauncher-81d52b616903f221f4f011109de68567ec47578d.zip
Merge pull request #869 from DarkKirb/nix-ecm
fix: Add extra-cmake-modules to the nix build
-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;