@@ 0,0 1,55 @@
+;;; GNU Guix --- Functional package management for GNU
+;;;
+;;; Copyright © 2022 jgart <jgart@dismail.de>
+;;;
+;;; This file is not part of GNU Guix.
+;;;
+;;; GNU Guix is free software; you can redistribute it and/or modify it
+;;; under the terms of the GNU General Public License as published by
+;;; the Free Software Foundation; either version 3 of the License, or (at
+;;; your option) any later version.
+;;;
+;;; GNU Guix is distributed in the hope that it will be useful, but
+;;; WITHOUT ANY WARRANTY; without even the implied warranty of
+;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+;;; GNU General Public License for more details.
+;;;
+;;; You should have received a copy of the GNU General Public License
+;;; along with GNU Guix. If not, see <http://www.gnu.org/licenses/>.
+
+(define-module (guixrus packages causal-agency)
+ #:use-module (guix build utils)
+ #:use-module ((guix licenses) #:prefix license:)
+ #:use-module (guix build-system gnu)
+ #:use-module (guix download)
+ #:use-module (guix gexp)
+ #:use-module (guix git-download)
+ #:use-module (guix packages)
+ #:use-module (guix utils)
+ #:use-module (gnu packages version-control)
+ #:use-module (gnu packages))
+
+(define-public cgit-pink
+ (package (inherit cgit)
+ (name "cgit-pink")
+ (version "1.3.0")
+ (source (origin
+ (method url-fetch)
+ (uri (string-append
+ "https://git.causal.agency/cgit-pink/snapshot/cgit-pink-"
+ version ".tar.gz"))
+ (sha256
+ (base32
+ "1qssvhmk4nidcw1y973vd65xpmaqh40x2bfi51m5b2rad0skmgm0"))))
+ (home-page "https://git.causal.agency/cgit-pink/about/")
+ (synopsis "Cgit fork aiming for better maintenance")
+ (description
+"@code{cgit-pink} is a fork of cgit. Upstream cgit has long been stagnant,
+with the vast majority of patches sent to the mailing list going
+silently ignored, despite their obvious merit in many cases. This fork
+aims to incorporate a number of existing patches as well as to provide
+a friendlier place to send new patches. They will, at the very least,
+get a reply. This fork also aims to make new releases which can hopefully
+be picked up by package repositories, making it easier for users to run
+an improved cgit.")))
+