summary refs log tree commit diff
diff options
context:
space:
mode:
authorRobert Schütz <dev@schuetz-co.de>2021-05-28 15:50:03 +0200
committerRobert Schütz <dev@schuetz-co.de>2021-05-28 15:50:03 +0200
commit575123a08a1b4783f3c22040a549adba54756201 (patch)
tree358648d5b99bbcb18c5c74efc6acc60662af3ba9
parent16817d94f3381538e2ec8d7d39c3dd9c30aa0524 (diff)
downloadnixpkgs-575123a08a1b4783f3c22040a549adba54756201.tar
nixpkgs-575123a08a1b4783f3c22040a549adba54756201.tar.gz
nixpkgs-575123a08a1b4783f3c22040a549adba54756201.tar.bz2
nixpkgs-575123a08a1b4783f3c22040a549adba54756201.tar.lz
nixpkgs-575123a08a1b4783f3c22040a549adba54756201.tar.xz
nixpkgs-575123a08a1b4783f3c22040a549adba54756201.tar.zst
nixpkgs-575123a08a1b4783f3c22040a549adba54756201.zip
mousai: fix with libadwaita 1.0.0-alpha.1
-rw-r--r--pkgs/applications/audio/mousai/default.nix9
1 files changed, 9 insertions, 0 deletions
diff --git a/pkgs/applications/audio/mousai/default.nix b/pkgs/applications/audio/mousai/default.nix
index 687546624b0..2f45a3fea92 100644
--- a/pkgs/applications/audio/mousai/default.nix
+++ b/pkgs/applications/audio/mousai/default.nix
@@ -1,6 +1,7 @@
 { lib
 , python3
 , fetchFromGitHub
+, fetchpatch
 , appstream-glib
 , desktop-file-utils
 , gettext
@@ -29,6 +30,14 @@ python3.pkgs.buildPythonApplication rec {
     sha256 = "sha256-AfR5n1dIm9X5OoPiikQEhHBFQq0rmQH4h7cCJ2yXoXI=";
   };
 
+  patches = [
+    (fetchpatch {
+      name = "fix-ABI-breakage-from-libadwaita.patch";
+      url = "https://github.com/SeaDve/Mousai/commit/e3db2d9d1949300f49399209b56d667746e539df.patch";
+      sha256 = "078kvmyhw4jd1m2npai0yl00lwh47jys2n03pkgxp6jf873y83vs";
+    })
+  ];
+
   postPatch = ''
     patchShebangs build-aux/meson
   '';