about summary refs log tree commit diff
path: root/overlays
diff options
context:
space:
mode:
Diffstat (limited to 'overlays')
-rw-r--r--overlays/patches/cgit/default.nix10
1 files changed, 8 insertions, 2 deletions
diff --git a/overlays/patches/cgit/default.nix b/overlays/patches/cgit/default.nix
index fa63bf5f14ed..816452cb2bf5 100644
--- a/overlays/patches/cgit/default.nix
+++ b/overlays/patches/cgit/default.nix
@@ -1,5 +1,11 @@
-{ cgit }:
+{ cgit, fetchpatch }:
 
 cgit.overrideAttrs ({ patches ? [], ... }: {
-  patches = patches ++ [ ./ui-commit-use-Git-raw-note-format.patch ];
+  patches = patches ++ [
+    ./ui-commit-use-Git-raw-note-format.patch
+    (fetchpatch {
+      url = "https://git.causal.agency/cgit/patch/?id=e65d3eb446294520e2aee50966e5070661d09671";
+      sha256 = "0wvckndjmxar3vgqdc3jdnpzy0xgrdlqgfaasixl3x87sdnf4kg7";
+    })
+  ];
 })