about summary refs log tree commit diff
path: root/pkgs/applications/version-management/git/default.nix
blob: c2388f8c1aa437163997ee6759a3d121f1103e93 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
args: with args;

stdenv.mkDerivation rec {
  name = "git-1.5.3.5";

  src = fetchurl {
    url = "mirror://kernel/software/scm/git/${name}.tar.bz2";
    sha256 = "0ab63s25wzmsl5inp7bykz5ac7xjilqa0ciaz7ydhciymz6gkawj";
  };

  buildInputs = [curl openssl zlib expat];

  makeFlags="prefix=\${out} PERL_PATH=${perl}/bin/perl SHELL_PATH=${stdenv.shell}";

  meta = {
	  license = "GPL2";
	  homepage = http://git.or.cz;
	  description = "A popular version control system designed to handle very
	  large projects with speed and efficiency";
  };
}