summary refs log tree commit diff
diff options
context:
space:
mode:
authorDominik Xaver Hörl <hoe.dom@gmx.de>2022-05-10 14:19:53 +0200
committerDominik Xaver Hörl <hoe.dom@gmx.de>2022-05-10 15:13:58 +0200
commit86e7fa945e310b1c21ea837109879e7c8b935e2b (patch)
tree836adc1916b84c7d29febcf98f10332e7087746a
parenta2ee3ed3f284c5b33432fbd55d07a624f01ff8c5 (diff)
downloadnixpkgs-86e7fa945e310b1c21ea837109879e7c8b935e2b.tar
nixpkgs-86e7fa945e310b1c21ea837109879e7c8b935e2b.tar.gz
nixpkgs-86e7fa945e310b1c21ea837109879e7c8b935e2b.tar.bz2
nixpkgs-86e7fa945e310b1c21ea837109879e7c8b935e2b.tar.lz
nixpkgs-86e7fa945e310b1c21ea837109879e7c8b935e2b.tar.xz
nixpkgs-86e7fa945e310b1c21ea837109879e7c8b935e2b.tar.zst
nixpkgs-86e7fa945e310b1c21ea837109879e7c8b935e2b.zip
tlaplusToolbox: 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.
-rw-r--r--pkgs/applications/science/logic/tlaplus/toolbox.nix5
1 files changed, 4 insertions, 1 deletions
diff --git a/pkgs/applications/science/logic/tlaplus/toolbox.nix b/pkgs/applications/science/logic/tlaplus/toolbox.nix
index e13fd578927..d84f0b2abf6 100644
--- a/pkgs/applications/science/logic/tlaplus/toolbox.nix
+++ b/pkgs/applications/science/logic/tlaplus/toolbox.nix
@@ -34,7 +34,10 @@ stdenv.mkDerivation rec {
 
   buildInputs = [ gtk3 ];
 
-  nativeBuildInputs = [ makeWrapper wrapGAppsHook ];
+  nativeBuildInputs = [
+    makeWrapper
+    (wrapGAppsHook.override { makeBinaryWrapper = makeWrapper; })
+  ];
 
   dontWrapGApps = true;