about summary refs log tree commit diff
path: root/pkgs/applications
diff options
context:
space:
mode:
authorBobby Rong <rjl931189261@126.com>2022-04-03 11:55:32 +0800
committerGitHub <noreply@github.com>2022-04-03 11:55:32 +0800
commit752e85be8d2784078a4c08a0f9533d7d82cf4f23 (patch)
tree057cd7a3d96d151fdfc98b323a95701f40d08e19 /pkgs/applications
parent21299f3dd3ff475f19bc8933f30ebb6a135799f1 (diff)
parentfd049bba8c11a40fee9910911d59603d50aa5ec0 (diff)
downloadnixlib-752e85be8d2784078a4c08a0f9533d7d82cf4f23.tar
nixlib-752e85be8d2784078a4c08a0f9533d7d82cf4f23.tar.gz
nixlib-752e85be8d2784078a4c08a0f9533d7d82cf4f23.tar.bz2
nixlib-752e85be8d2784078a4c08a0f9533d7d82cf4f23.tar.lz
nixlib-752e85be8d2784078a4c08a0f9533d7d82cf4f23.tar.xz
nixlib-752e85be8d2784078a4c08a0f9533d7d82cf4f23.tar.zst
nixlib-752e85be8d2784078a4c08a0f9533d7d82cf4f23.zip
Merge pull request #166538 from bobby285271/banking
banking: fix build with meson 0.61
Diffstat (limited to 'pkgs/applications')
-rw-r--r--pkgs/applications/office/banking/default.nix11
1 files changed, 10 insertions, 1 deletions
diff --git a/pkgs/applications/office/banking/default.nix b/pkgs/applications/office/banking/default.nix
index e6c5192b0f94..8f2636395292 100644
--- a/pkgs/applications/office/banking/default.nix
+++ b/pkgs/applications/office/banking/default.nix
@@ -1,5 +1,5 @@
 { lib
-, fetchurl
+, fetchpatch
 , fetchFromGitLab
 , python3
 , appstream-glib
@@ -28,6 +28,15 @@ python3.pkgs.buildPythonApplication rec {
     sha256 = "1w5x9iczw5hb9bfdm1df37n8xhdrida1yfrd82k9l8hb1k4q3h9d";
   };
 
+  patches = [
+    # Fix build with meson 0.61
+    # https://gitlab.com/tabos/banking/-/merge_requests/90
+    (fetchpatch {
+      url = "https://gitlab.com/tabos/banking/-/commit/c3cc9afc380fe666ae6e331aa8a97659c60397a4.patch";
+      sha256 = "r9n9l47XU4Tg4U5sfiFdGkbG8QB7O4ol9CB1ya06yOc=";
+    })
+  ];
+
   postPatch = ''
     patchShebangs meson_post_install.py
   '';