summary refs log tree commit diff
path: root/pkgs/applications/version-management/gitolite/default.nix
blob: 2dcb13e5db5e1e3963b2968c6a6f47afeffc46ea (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
{ stdenv, fetchurl, perl, git, fetchgit }:

stdenv.mkDerivation rec {
  name = "gitolite-${version}";
  version = "3.6.1";

  src = fetchgit {
    url    = "git://github.com/sitaramc/gitolite";
    rev    = "refs/tags/v${version}";
    sha256 = "47e0e9c3137b05af96c091494ba918d61d1d3396749a04d63e7949ebcc6c6dca";
    leaveDotGit = true;
  };

  buildInputs = [ perl git ];
  buildPhase = "true";

  patchPhase = ''
    substituteInPlace ./install --replace " 2>/dev/null" ""
    substituteInPlace src/lib/Gitolite/Hooks/PostUpdate.pm \
      --replace /usr/bin/perl "/usr/bin/env perl"
    substituteInPlace src/lib/Gitolite/Hooks/Update.pm \
      --replace /usr/bin/perl "/usr/bin/env perl"
  '';
  installPhase = ''
    mkdir -p $out/bin
    git tag v${version} # Gitolite requires a tag for the version information :/
    perl ./install -to $out/bin
  '';

  meta = {
    description = "Finely-grained git repository hosting";
    homepage    = "http://gitolite.com/gitolite/index.html";
    license     = stdenv.lib.licenses.gpl2;
    platforms   = stdenv.lib.platforms.unix;
    maintainers = [ stdenv.lib.maintainers.thoughtpolice ];
  };
}