nixpkgs/pkgs/applications/version-management/git/default.nix

32 lines
835 B
Nix
Raw Normal View History

args: with args;
stdenv.mkDerivation rec {
name = "git-1.5.4.2";
src = fetchurl {
url = "mirror://kernel/software/scm/git/${name}.tar.bz2";
sha256 = "089n3da06k19gzhacsqgaamgx5hy5r50r2b4a626s87w44mj78sn";
};
buildInputs = [curl openssl zlib expat gettext emacs];
makeFlags="prefix=\${out} PERL_PATH=${perl}/bin/perl SHELL_PATH=${stdenv.shell}";
postInstall = ''
# Install Emacs mode.
echo "installing Emacs mode..."
make install -C contrib/emacs prefix="$out"
# XXX: There are other things under `contrib' that people might want to
# install.
'';
meta = {
license = "GPLv2";
homepage = http://git.or.cz;
description = ''Git, a popular distributed version control system
designed to handle very large projects with speed
and efficiency.'';
};
}