diff options
author | seth <getchoo@tuta.io> | 2023-04-01 12:58:15 -0400 |
---|---|---|
committer | seth <getchoo@tuta.io> | 2023-04-01 13:06:53 -0400 |
commit | 81b140629070c96853ccdc50fe30256ffe1c0636 (patch) | |
tree | 03d91e2a626a52a7d31f9578fbc831fa5d691d0a /nix | |
parent | 09d607f39c47a467de5dde260e90771ad0ac51df (diff) | |
download | PrismLauncher-81b140629070c96853ccdc50fe30256ffe1c0636.tar.gz PrismLauncher-81b140629070c96853ccdc50fe30256ffe1c0636.tar.bz2 PrismLauncher-81b140629070c96853ccdc50fe30256ffe1c0636.zip |
feat(nix): use ninja for builds
Signed-off-by: seth <getchoo@tuta.io>
Diffstat (limited to 'nix')
-rw-r--r-- | nix/default.nix | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/nix/default.nix b/nix/default.nix index 6d4f3f24..cd782f90 100644 --- a/nix/default.nix +++ b/nix/default.nix @@ -2,6 +2,7 @@ lib, stdenv, cmake, + ninja, jdk8, jdk17, zlib, @@ -33,7 +34,7 @@ stdenv.mkDerivation rec { src = lib.cleanSource self; - nativeBuildInputs = [extra-cmake-modules cmake file jdk17 wrapQtAppsHook]; + nativeBuildInputs = [extra-cmake-modules cmake file jdk17 ninja wrapQtAppsHook]; buildInputs = [ qtbase |