2018-01-27 21:14:09 +01:00
|
|
|
{ stdenv, fetchFromGitHub, git, nettools, perl }:
|
2014-06-26 04:50:16 +02:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 14:41:18 +02:00
|
|
|
pname = "gitolite";
|
2019-01-16 13:28:26 +01:00
|
|
|
version = "3.6.11";
|
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}";
|
2019-01-16 13:28:26 +01:00
|
|
|
sha256 = "1rkj7gknwjlc5ij9w39zf5mr647bm45la57yjczydmvrb8c56yrh";
|
2014-06-26 04:50:16 +02:00
|
|
|
};
|
|
|
|
|
2015-05-07 23:26:06 +02:00
|
|
|
buildInputs = [ git nettools perl ];
|
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"
|
2014-06-26 07:23:59 +02:00
|
|
|
'';
|
2014-07-13 12:39:02 +02: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
|
|
|
'';
|
|
|
|
|
2014-07-13 12:39:02 +02:00
|
|
|
meta = with stdenv.lib; {
|
2014-06-26 04:50:16 +02:00
|
|
|
description = "Finely-grained git repository hosting";
|
2019-07-10 21:52: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
|
|
|
}
|