about summary refs log tree commit diff
path: root/pkgs/tools/security/cryptomator/default.nix
diff options
context:
space:
mode:
authorDominik Xaver Hörl <hoe.dom@gmx.de>2022-05-10 14:25:43 +0200
committerDominik Xaver Hörl <hoe.dom@gmx.de>2022-05-10 15:17:09 +0200
commit9709c5f4a4ba7b3e2889b4f1fe79c9e42e829909 (patch)
treea70578d960fc24735634fcb1af40106df41679f1 /pkgs/tools/security/cryptomator/default.nix
parent86e7fa945e310b1c21ea837109879e7c8b935e2b (diff)
cryptomator: use non-binary wrapper for wrapGAppsHook
The use of --add-flags in this derivation does not work with binary
    wrappers, which wrapGAppsHook uses since #164163.
Diffstat (limited to 'pkgs/tools/security/cryptomator/default.nix')
-rw-r--r--pkgs/tools/security/cryptomator/default.nix8
1 files changed, 7 insertions, 1 deletions
diff --git a/pkgs/tools/security/cryptomator/default.nix b/pkgs/tools/security/cryptomator/default.nix
index 76b5f5216636c..5a1886e49e55b 100644
--- a/pkgs/tools/security/cryptomator/default.nix
+++ b/pkgs/tools/security/cryptomator/default.nix
@@ -98,7 +98,13 @@ in stdenv.mkDerivation rec {
     cp ${src}/dist/linux/common/application-vnd.cryptomator.vault.xml $out/share/mime/packages/application-vnd.cryptomator.vault.xml
   '';
 
-  nativeBuildInputs = [ autoPatchelfHook maven makeWrapper wrapGAppsHook jdk ];
+  nativeBuildInputs = [
+    autoPatchelfHook
+    maven
+    makeWrapper
+    (wrapGAppsHook.override { makeBinaryWrapper = makeWrapper; })
+    jdk
+  ];
   buildInputs = [ fuse jre glib jffi ];
 
   meta = with lib; {