mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-22 23:13:19 +00:00
d994dabace
We do not use a "plugin system" for Git addons anymore, and therefore this directory is no longer useful. Indeed that directory is way more confusing, given that it includes more than mere Git addons, going from Bitbucket server command-line tools to complete rewrites of Git in exotic programming languages. Also, without this directory, the mental load of decision-making reduces a lot. When anyone is interested in including a new git-related tool, just put it into pkgs/applications/version-management, without apologies.
24 lines
864 B
Nix
24 lines
864 B
Nix
{ lib, fetchurl, callPackage }:
|
|
|
|
callPackage (import ./common.nix rec {
|
|
pname = "cgit-pink";
|
|
version = "1.4.1";
|
|
|
|
src = fetchurl {
|
|
url = "https://git.causal.agency/cgit-pink/snapshot/cgit-pink-${version}.tar.gz";
|
|
sha256 = "1ma6j3r4ba5fhd47pc6xn5bmxaqr8ci2pvky9v100n1hh5n6q97i";
|
|
};
|
|
|
|
# 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://git.causal.agency/cgit-pink/about/";
|
|
description = "cgit fork aiming for better maintenance";
|
|
maintainers = with lib.maintainers; [ sternenseemann ];
|
|
}) {}
|