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

cgit.overrideAttrs ({ patches ? [], ... }: {
  patches = patches ++ [
    ./ui-commit-use-Git-raw-note-format.patch
    ./ui-shared-add-this-commit-option-to-switch-form.patch
    (fetchpatch {
      url = "https://git.causal.agency/cgit/patch/?id=e65d3eb446294520e2aee50966e5070661d09671";
      sha256 = "0wvckndjmxar3vgqdc3jdnpzy0xgrdlqgfaasixl3x87sdnf4kg7";
    })
  ];
})