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