mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 02:06:46 +01:00
9820cb1bf2
changes: * buildPhase = "true" * buildPhase = ":"
39 lines
1.1 KiB
Nix
39 lines
1.1 KiB
Nix
{ stdenv, fetchurl, git, nettools, perl }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "gitolite-${version}";
|
|
version = "3.6.3";
|
|
|
|
src = fetchurl {
|
|
url = "https://github.com/sitaramc/gitolite/archive/v${version}.tar.gz";
|
|
sha256 = "16cxifjxnri719qb6zzwkdf61x5y957acbdhcgqcan23x1mfn84v";
|
|
};
|
|
|
|
buildInputs = [ git nettools perl ];
|
|
|
|
dontBuild = true;
|
|
|
|
patchPhase = ''
|
|
substituteInPlace ./install --replace " 2>/dev/null" ""
|
|
substituteInPlace src/lib/Gitolite/Hooks/PostUpdate.pm \
|
|
--replace /usr/bin/perl "${perl}/bin/perl"
|
|
substituteInPlace src/lib/Gitolite/Hooks/Update.pm \
|
|
--replace /usr/bin/perl "${perl}/bin/perl"
|
|
substituteInPlace src/lib/Gitolite/Setup.pm \
|
|
--replace hostname "${nettools}/bin/hostname"
|
|
'';
|
|
|
|
installPhase = ''
|
|
mkdir -p $out/bin
|
|
perl ./install -to $out/bin
|
|
'';
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "Finely-grained git repository hosting";
|
|
homepage = http://gitolite.com/gitolite/index.html;
|
|
license = licenses.gpl2;
|
|
platforms = platforms.unix;
|
|
maintainers = [ maintainers.thoughtpolice maintainers.lassulus ];
|
|
};
|
|
}
|