about summary refs log tree commit diff
path: root/pkgs/applications/kde
diff options
context:
space:
mode:
authorSandro <sandro.jaeckel@gmail.com>2024-06-09 16:01:14 +0200
committerGitHub <noreply@github.com>2024-06-09 16:01:14 +0200
commitd2768ea8ba99caa77924f16e5d0dbd0ac2553b5b (patch)
tree685c9f8b8ab6b5a289d7b617458e6e4b57779007 /pkgs/applications/kde
parent21f2d189e40ef88e16d4e4cee1b70eccd37c18c9 (diff)
parent270cf648af9e29e9f759a37a5cb2d59dcfe64307 (diff)
Merge pull request #308448 from r-ryantm/auto-update/corrosion
corrosion: 0.4.8 -> 0.5
Diffstat (limited to 'pkgs/applications/kde')
-rw-r--r--pkgs/applications/kde/angelfish.nix9
1 files changed, 9 insertions, 0 deletions
diff --git a/pkgs/applications/kde/angelfish.nix b/pkgs/applications/kde/angelfish.nix
index 1bd6084a1883b..326a9fc309ac2 100644
--- a/pkgs/applications/kde/angelfish.nix
+++ b/pkgs/applications/kde/angelfish.nix
@@ -4,6 +4,7 @@
 , cmake
 , corrosion
 , extra-cmake-modules
+, fetchpatch2
 , futuresql
 , kconfig
 , kcoreaddons
@@ -30,6 +31,14 @@
 mkDerivation rec {
   pname = "angelfish";
 
+  patches = [
+    (fetchpatch2 {
+      name = "fix-build-with-corrosion-0.5.patch";
+      url = "https://invent.kde.org/network/angelfish/-/commit/b04928e3b62a11b647622b81fb67b7c0db656ac8.patch";
+      hash = "sha256-9rpkMKQKrvGJFIQDwSIeeZyk4/vd348r660mBOKzM2E=";
+    })
+  ];
+
   cargoDeps = rustPlatform.fetchCargoTarball {
     # include version in the name so we invalidate the FOD
     name = "${pname}-${srcs.angelfish.version}";