aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSefa Eyeoglu <contact@scrumplex.net>2022-10-15 13:13:56 +0200
committerSefa Eyeoglu <contact@scrumplex.net>2022-10-15 13:13:56 +0200
commit03d077e915cf2bf06474b17e51e0c664f57eb348 (patch)
tree05428ec4258cd4b3c4f3289e024de73a59f4a36a
parent303628bb0579f13d3ceac915b3caaf4d7fc9b2db (diff)
downloadPrismLauncher-03d077e915cf2bf06474b17e51e0c664f57eb348.tar.gz
PrismLauncher-03d077e915cf2bf06474b17e51e0c664f57eb348.tar.bz2
PrismLauncher-03d077e915cf2bf06474b17e51e0c664f57eb348.zip
fix(nix): add ghc_filesystem dependency
Signed-off-by: Sefa Eyeoglu <contact@scrumplex.net>
-rw-r--r--nix/default.nix3
1 files changed, 2 insertions, 1 deletions
diff --git a/nix/default.nix b/nix/default.nix
index 88b540ab..19136cad 100644
--- a/nix/default.nix
+++ b/nix/default.nix
@@ -5,6 +5,7 @@
, ninja
, jdk8
, jdk
+, ghc_filesystem
, zlib
, file
, wrapQtAppsHook
@@ -49,7 +50,7 @@ stdenv.mkDerivation rec {
src = lib.cleanSource self;
- nativeBuildInputs = [ cmake extra-cmake-modules ninja jdk file wrapQtAppsHook ];
+ nativeBuildInputs = [ cmake extra-cmake-modules ninja jdk ghc_filesystem file wrapQtAppsHook ];
buildInputs = [ qtbase quazip zlib ];
dontWrapQtApps = true;