about summary refs log tree commit diff
path: root/overlays/patches/public-inbox/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'overlays/patches/public-inbox/default.nix')
-rw-r--r--overlays/patches/public-inbox/default.nix13
1 files changed, 9 insertions, 4 deletions
diff --git a/overlays/patches/public-inbox/default.nix b/overlays/patches/public-inbox/default.nix
index f9f573787c1c..26f21c6da11b 100644
--- a/overlays/patches/public-inbox/default.nix
+++ b/overlays/patches/public-inbox/default.nix
@@ -1,9 +1,14 @@
-{ public-inbox }:
+{ public-inbox, fetchpatch }:
 
 public-inbox.overrideAttrs ({ patches ? [], ... }: {
   patches = patches ++ [
-    ./0003-view-don-t-show-page-if-no-links-follow-it.patch
-    ./0004-view-don-t-500-if-no-mail-received-yet.patch
-    ./0005-wwwstream-make-source-info-configurable.patch
+    (fetchpatch {
+      url = "https://80x24.org/public-inbox.git/patch/?id=41ecd08ee60daa495de3a2fc2c0296dc9cc9a0b3";
+      sha256 = "1skn2ncr9g6k78fiscwkqisg4k0pv133sf4pyzryn3ahb09i1yqn";
+    })
+
+    ./0001-view-don-t-show-page-if-no-links-follow-it.patch
+    ./0002-view-don-t-500-if-no-mail-received-yet.patch
+    ./0003-wwwstream-make-source-info-configurable.patch
   ];
 })