2021-04-10 02:13:18 +02:00
|
|
|
{ depot, lib, pkgs, ... }:
|
2020-01-12 03:48:40 +01:00
|
|
|
|
|
|
|
let
|
2022-05-19 10:45:53 +02:00
|
|
|
inherit (pkgs) stdenv gzip bzip2 xz lzip zstd zlib openssl;
|
2021-04-10 02:13:18 +02:00
|
|
|
in
|
|
|
|
stdenv.mkDerivation rec {
|
2022-05-19 10:27:26 +02:00
|
|
|
pname = "cgit-pink";
|
2020-01-12 03:48:40 +01:00
|
|
|
version = "master";
|
|
|
|
src = ./.;
|
|
|
|
|
2022-05-19 10:27:26 +02:00
|
|
|
buildInputs = [ openssl zlib ];
|
2020-01-12 03:48:40 +01:00
|
|
|
|
2021-04-02 01:09:05 +02:00
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
2020-01-12 03:48:40 +01:00
|
|
|
postPatch = ''
|
|
|
|
sed -e 's|"gzip"|"${gzip}/bin/gzip"|' \
|
|
|
|
-e 's|"bzip2"|"${bzip2.bin}/bin/bzip2"|' \
|
2022-05-19 10:45:53 +02:00
|
|
|
-e 's|"lzip"|"${lzip}/bin/lzip"|' \
|
2020-01-12 03:48:40 +01:00
|
|
|
-e 's|"xz"|"${xz.bin}/bin/xz"|' \
|
2022-05-19 10:45:53 +02:00
|
|
|
-e 's|"zstd"|"${zstd}/bin/zstd"|' \
|
2020-01-12 03:48:40 +01:00
|
|
|
-i ui-snapshot.c
|
|
|
|
'';
|
|
|
|
|
2021-09-21 12:03:01 +02:00
|
|
|
# Give cgit the git source tree including depot patches. Note that
|
|
|
|
# the version expected by cgit should be kept in sync with the
|
|
|
|
# version available in nixpkgs.
|
|
|
|
#
|
|
|
|
# TODO(tazjin): Add an assert for this somewhere so we notice it on
|
|
|
|
# channel bumps.
|
2020-01-12 03:48:40 +01:00
|
|
|
preBuild = ''
|
|
|
|
rm -rf git # remove submodule dir ...
|
2021-09-21 12:03:01 +02:00
|
|
|
cp -r --no-preserve=ownership,mode ${pkgs.srcOnly depot.third_party.git} git
|
2020-01-12 03:48:40 +01:00
|
|
|
makeFlagsArray+=(prefix="$out" CGIT_SCRIPT_PATH="$out/cgit/")
|
2021-04-02 01:09:55 +02:00
|
|
|
cat tvl-extra.css >> cgit.css
|
2020-01-12 03:48:40 +01:00
|
|
|
'';
|
|
|
|
|
2022-05-19 10:48:19 +02:00
|
|
|
stripDebugList = [ "cgit" ];
|
|
|
|
|
2022-05-19 10:46:39 +02:00
|
|
|
# We don't use the filters and they require wrapping to find their deps
|
|
|
|
postInstall = ''
|
|
|
|
rm -rf "$out/lib/cgit/filters"
|
|
|
|
find "$out" -type d -empty -delete
|
|
|
|
'';
|
|
|
|
|
2020-01-12 03:48:40 +01:00
|
|
|
meta = {
|
2022-05-19 10:27:26 +02:00
|
|
|
hompepage = "https://git.causal.agency/cgit-pink/";
|
|
|
|
description = "cgit fork aiming for better maintenance";
|
2021-04-01 17:06:16 +02:00
|
|
|
license = lib.licenses.gpl2;
|
|
|
|
platforms = lib.platforms.linux;
|
2020-01-12 03:48:40 +01:00
|
|
|
};
|
|
|
|
}
|