about summary refs log tree commit diff
path: root/pkgs/tools/security/cryptomator
diff options
context:
space:
mode:
authorNaïm Favier <n@monade.li>2022-05-12 00:25:07 +0200
committerNaïm Favier <n@monade.li>2022-05-12 11:01:23 +0200
commit3c77d361b5e8e8d9173282538067cce6bcc3cc29 (patch)
treef7b722de50a9e0db881fd8695810aeb527494ade /pkgs/tools/security/cryptomator
parent88369997e1db7e1819b7b940fc2740f188d6608d (diff)
makeShellWrapper: add explicitly named attribute
So that things that use the makeShellWrapper/wrapProgramShell
functions can depend on makeShellWrapper explicitly, which should ease
migration in the future.
Diffstat (limited to 'pkgs/tools/security/cryptomator')
-rw-r--r--pkgs/tools/security/cryptomator/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/tools/security/cryptomator/default.nix b/pkgs/tools/security/cryptomator/default.nix
index 9517427fefd1e..ccd5318ffb609 100644
--- a/pkgs/tools/security/cryptomator/default.nix
+++ b/pkgs/tools/security/cryptomator/default.nix
@@ -1,7 +1,7 @@
 { lib, stdenv, fetchFromGitHub
 , autoPatchelfHook
 , fuse, jffi
-, maven, jdk, jre, makeWrapper, glib, wrapGAppsHook
+, maven, jdk, jre, makeShellWrapper, glib, wrapGAppsHook
 }:
 
 let
@@ -101,7 +101,7 @@ in stdenv.mkDerivation rec {
   nativeBuildInputs = [
     autoPatchelfHook
     maven
-    makeWrapper
+    makeShellWrapper
     wrapGAppsHook
     jdk
   ];