summary refs log tree commit diff
path: root/pkgs/applications/audio/easyeffects
diff options
context:
space:
mode:
authorJan Tojnar <jtojnar@gmail.com>2021-10-14 01:59:05 +0200
committerJan Tojnar <jtojnar@gmail.com>2021-10-14 02:31:12 +0200
commitcead114134280e790a0b9f9d9ed7cd97680b85f0 (patch)
treeb0f51a36ac0424a86cee629c3f49cb9f7ac4322b /pkgs/applications/audio/easyeffects
parente90c3e2fe5039095f1c1f62587f131fc25ef8485 (diff)
downloadnixpkgs-cead114134280e790a0b9f9d9ed7cd97680b85f0.tar
nixpkgs-cead114134280e790a0b9f9d9ed7cd97680b85f0.tar.gz
nixpkgs-cead114134280e790a0b9f9d9ed7cd97680b85f0.tar.bz2
nixpkgs-cead114134280e790a0b9f9d9ed7cd97680b85f0.tar.lz
nixpkgs-cead114134280e790a0b9f9d9ed7cd97680b85f0.tar.xz
nixpkgs-cead114134280e790a0b9f9d9ed7cd97680b85f0.tar.zst
nixpkgs-cead114134280e790a0b9f9d9ed7cd97680b85f0.zip
easyeffects: drop accidental GTK3 dependency
Diffstat (limited to 'pkgs/applications/audio/easyeffects')
-rw-r--r--pkgs/applications/audio/easyeffects/default.nix6
1 files changed, 4 insertions, 2 deletions
diff --git a/pkgs/applications/audio/easyeffects/default.nix b/pkgs/applications/audio/easyeffects/default.nix
index 1e85d57c3f7..fba589ed5b6 100644
--- a/pkgs/applications/audio/easyeffects/default.nix
+++ b/pkgs/applications/audio/easyeffects/default.nix
@@ -25,7 +25,7 @@
 , rnnoise
 , rubberband
 , speexdsp
-, wrapGAppsHook
+, wrapGAppsHook4
 , zam-plugins
 , zita-convolver
 }:
@@ -48,7 +48,7 @@ stdenv.mkDerivation rec {
     ninja
     pkg-config
     python3
-    wrapGAppsHook
+    wrapGAppsHook4
   ];
 
   buildInputs = [
@@ -74,6 +74,8 @@ stdenv.mkDerivation rec {
   postPatch = ''
     chmod +x meson_post_install.py
     patchShebangs meson_post_install.py
+    # https://github.com/wwmm/easyeffects/pull/1205
+    substituteInPlace meson_post_install.py --replace "gtk-update-icon-cache" "gtk4-update-icon-cache"
   '';
 
   preFixup =