aboutsummaryrefslogtreecommitdiff
path: root/infra/libkookie
diff options
context:
space:
mode:
authorKatharina Fey <kookie@spacekookie.de>2021-03-09 21:06:33 +0100
committerKatharina Fey <kookie@spacekookie.de>2021-03-09 21:06:33 +0100
commit6dcad92b3af682a70c7635e7963c9f4e994acb8e (patch)
treeebc65d2496fd7519ae2a489a31c619b53f116d62 /infra/libkookie
parent1e4fb94851fffafe8a23d2445cd35de952dce1a9 (diff)
libkookie: cgit: include recursive README page rendering patch
Diffstat (limited to 'infra/libkookie')
-rw-r--r--infra/libkookie/overlays/patches/cgit/default.nix11
1 files changed, 8 insertions, 3 deletions
diff --git a/infra/libkookie/overlays/patches/cgit/default.nix b/infra/libkookie/overlays/patches/cgit/default.nix
index cddb7cf6a55e..ae116027c750 100644
--- a/infra/libkookie/overlays/patches/cgit/default.nix
+++ b/infra/libkookie/overlays/patches/cgit/default.nix
@@ -5,8 +5,13 @@
* sub-projects can be advertised more easily.
*
*/
-{ cgit, ... }:
+{ lib, cgit, fetchgit, ... }:
-cgit.overrideAttrs ({ patches ? [], ... }: {
- patches = patches ++ [ ./0001-recursive-readme.patch ];
+cgit.overrideAttrs ({ src, patches ? [], ... }: {
+ src = fetchgit {
+ url = "https://git.spacekookie.de/cgit-tvl";
+ rev = "8ba998aa82d477b87e4a73edf89aceaec0da68f2";
+ sha256 = "1cn7qw69r7aw9lgrkq80l7yacfihl1nn8bcmn6l5jxs2vbvbgmn6";
+ };
+ # patches = patches ++ [ ./0001-recursive-readme.patch ];
})