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

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
  ];

  # Tests fail with modern Email::MIME.  Once public-inbox is upgraded
  # past 1.2.0 the tests can be run again.
  doCheck = false;
})