blob: fed5a34d6ede5d77ec7bb2e0cb7d78ccf8389cda (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
{
lib,
fetchurl,
callPackage,
pkgs,
}:
callPackage (import (pkgs.path + "/pkgs/applications/version-management/cgit/common.nix") rec {
pname = "cgit-magenta";
version = "1.4.1";
src = ./.;
# cgit-pink is tightly coupled with git and needs a git source tree to build.
# IMPORTANT: Remember to check which git version cgit-pink needs on every
# version bump (look for "GIT_VER" in the top-level Makefile).
gitSrc = fetchurl {
url = "mirror://kernel/software/scm/git/git-2.36.1.tar.xz";
sha256 = "0w43a35mhc2qf2gjkxjlnkf2lq8g0snf34iy5gqx2678yq7llpa0";
};
homepage = "https://cgit.rory.gay/cgit-magenta.git/about/";
description = "cgit fork aiming for better maintenance (again)";
#maintainers = with lib.maintainers; [ sternenseemann ];
maintainers = [];
}) { }
|