mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-22 05:33:23 +00:00
33cce15e42
there's no documentation for meta.repositories and its not widely used
24 lines
869 B
Nix
24 lines
869 B
Nix
{ lib, fetchurl, callPackage }:
|
|
|
|
callPackage (import ./common.nix rec {
|
|
pname = "cgit-pink";
|
|
version = "1.3.0";
|
|
|
|
src = fetchurl {
|
|
url = "https://git.causal.agency/cgit-pink/snapshot/cgit-pink-${version}.tar.gz";
|
|
sha256 = "sha256-oL46NWgqi1VqKNEt0QGBWNXbi2l7nOQDZy1aMivcWuM=";
|
|
};
|
|
|
|
# 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.35.1.tar.xz";
|
|
sha256 = "sha256-12hSjmRD9logMDYmbxylD50Se6iXUeMurTcRftkZEIA=";
|
|
};
|
|
|
|
homepage = "https://git.causal.agency/cgit-pink/about/";
|
|
description = "cgit fork aiming for better maintenance";
|
|
maintainers = with lib.maintainers; [ qyliss sternenseemann ];
|
|
}) {}
|