2007-11-14 22:41:01 +01:00
|
|
|
args: with args;
|
2007-04-26 18:14:01 +02:00
|
|
|
|
2007-11-14 22:41:01 +01:00
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "git-1.5.3.5";
|
2007-04-26 18:14:01 +02:00
|
|
|
|
|
|
|
src = fetchurl {
|
2007-11-14 22:41:01 +01:00
|
|
|
url = "mirror://kernel/software/scm/git/${name}.tar.bz2";
|
|
|
|
sha256 = "0ab63s25wzmsl5inp7bykz5ac7xjilqa0ciaz7ydhciymz6gkawj";
|
2007-04-26 18:14:01 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
buildInputs = [curl openssl zlib expat];
|
|
|
|
|
2007-11-14 22:41:01 +01:00
|
|
|
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";
|
|
|
|
};
|
2007-04-26 18:14:01 +02:00
|
|
|
}
|