about summary refs log tree commit diff
path: root/overlays/patches/public-inbox/default.nix
blob: 873af1f61e101a130d2dc75b362524339e55f6da (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
{ public-inbox, fetchpatch }:

public-inbox.overrideAttrs ({ patches ? [], ... }: {
  patches = patches ++ [
    ./0001-view-don-t-show-page-if-no-links-follow-it.patch
    ./0002-wwwstream-make-source-info-configurable.patch
    (fetchpatch {
      url = "https://public-inbox.org/meta/20210622120920.2756569-1-hi@alyssa.is/raw";
      sha256 = "0plpav4l5zkl14wjmc6qr54kcjch296ynawrbbyk4m6i54dyhfbw";
    })
  ];
})