about summary refs log tree commit diff
path: root/third_party/public-inbox/default.nix
blob: 1a4b196f94b562b982552f1fb9a50e22cb514b8c (plain) (blame)
1
2
3
4
5
6
7
8
9
{ pkgs, ... }:

pkgs.public-inbox.overrideAttrs (old: {
  patches = (old.patches or [ ]) ++ [
    ./0001-feat-always-set-the-List-ID-header-even-in-watch.patch
  ];

  doCheck = false; # too slow, and nixpkgs already runs them
})