diff options
author | txtsd <code@ihavea.quest> | 2023-04-02 14:06:35 +0530 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-04-02 14:06:35 +0530 |
commit | bc1a7d2890cc4b1915c53c508bfc8508116c0b5f (patch) | |
tree | 03d91e2a626a52a7d31f9578fbc831fa5d691d0a /nix | |
parent | 09d607f39c47a467de5dde260e90771ad0ac51df (diff) | |
parent | 81b140629070c96853ccdc50fe30256ffe1c0636 (diff) | |
download | PrismLauncher-bc1a7d2890cc4b1915c53c508bfc8508116c0b5f.tar.gz PrismLauncher-bc1a7d2890cc4b1915c53c508bfc8508116c0b5f.tar.bz2 PrismLauncher-bc1a7d2890cc4b1915c53c508bfc8508116c0b5f.zip |
Merge pull request #966 from getchoo/use-ninja
use ninja in nix builds
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 |