2022-08-28 01:24:37 +02:00
|
|
|
{ stdenv, coreutils, fetchFromGitHub, git, lib, makeWrapper, nettools, perl, perlPackages, nixosTests }:
|
2014-06-26 04:50:16 +02:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 14:41:18 +02:00
|
|
|
pname = "gitolite";
|
2020-08-14 01:50:47 +02:00
|
|
|
version = "3.6.12";
|
2014-06-26 04:50:16 +02:00
|
|
|
|
2018-01-27 21:14:09 +01:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "sitaramc";
|
|
|
|
repo = "gitolite";
|
2018-10-17 00:20:38 +02:00
|
|
|
rev = "v${version}";
|
2020-08-14 01:50:47 +02:00
|
|
|
sha256 = "05xw1pmagvkrbzga5pgl3xk9qyc6b5x73f842454f3w9ijspa8zy";
|
2014-06-26 04:50:16 +02:00
|
|
|
};
|
|
|
|
|
2019-12-05 00:10:57 +01:00
|
|
|
buildInputs = [ nettools perl ];
|
|
|
|
nativeBuildInputs = [ makeWrapper ];
|
|
|
|
propagatedBuildInputs = [ git ];
|
2016-05-04 12:08:35 +02:00
|
|
|
|
|
|
|
dontBuild = true;
|
2014-06-26 07:23:59 +02:00
|
|
|
|
2019-01-16 12:45:45 +01:00
|
|
|
postPatch = ''
|
2014-06-26 07:23:59 +02:00
|
|
|
substituteInPlace ./install --replace " 2>/dev/null" ""
|
|
|
|
substituteInPlace src/lib/Gitolite/Hooks/PostUpdate.pm \
|
2014-07-13 12:39:02 +02:00
|
|
|
--replace /usr/bin/perl "${perl}/bin/perl"
|
2014-06-26 07:23:59 +02:00
|
|
|
substituteInPlace src/lib/Gitolite/Hooks/Update.pm \
|
2014-07-13 12:39:02 +02:00
|
|
|
--replace /usr/bin/perl "${perl}/bin/perl"
|
2015-05-07 23:26:06 +02:00
|
|
|
substituteInPlace src/lib/Gitolite/Setup.pm \
|
|
|
|
--replace hostname "${nettools}/bin/hostname"
|
2022-08-28 01:24:37 +02:00
|
|
|
substituteInPlace src/commands/sskm \
|
|
|
|
--replace /bin/rm "${coreutils}/bin/rm"
|
2014-06-26 07:23:59 +02:00
|
|
|
'';
|
2014-07-13 12:39:02 +02:00
|
|
|
|
2019-12-05 00:10:57 +01:00
|
|
|
postFixup = ''
|
|
|
|
wrapProgram $out/bin/gitolite-shell \
|
2021-06-22 15:11:35 +02:00
|
|
|
--prefix PATH : ${lib.makeBinPath [ git (perl.withPackages (p: [ p.JSON ])) ]}
|
2019-12-05 00:10:57 +01:00
|
|
|
'';
|
|
|
|
|
2014-06-26 04:50:16 +02:00
|
|
|
installPhase = ''
|
|
|
|
mkdir -p $out/bin
|
|
|
|
perl ./install -to $out/bin
|
2018-01-27 21:14:09 +01:00
|
|
|
echo ${version} > $out/bin/VERSION
|
2014-06-26 04:50:16 +02:00
|
|
|
'';
|
|
|
|
|
2022-05-27 14:59:19 +02:00
|
|
|
passthru.tests = {
|
|
|
|
gitolite = nixosTests.gitolite;
|
|
|
|
};
|
|
|
|
|
2021-01-11 08:54:33 +01:00
|
|
|
meta = with lib; {
|
2014-06-26 04:50:16 +02:00
|
|
|
description = "Finely-grained git repository hosting";
|
2020-04-01 03:11:51 +02:00
|
|
|
homepage = "https://gitolite.com/gitolite/index.html";
|
2014-07-13 12:39:02 +02:00
|
|
|
license = licenses.gpl2;
|
|
|
|
platforms = platforms.unix;
|
2018-01-27 21:14:09 +01:00
|
|
|
maintainers = [ maintainers.thoughtpolice maintainers.lassulus maintainers.tomberek ];
|
2014-06-26 04:50:16 +02:00
|
|
|
};
|
2014-06-26 05:55:43 +02:00
|
|
|
}
|