pkgs/applications/editors/emacs-modes/magit: updated to version magit-0.7-94-gbf42bf8

Magit has seen plenty of development since version 0.7, but for some reason
there haven't been any new releases. This version bump updates the expression to
build a current version of Magit directly from the Git repository.

This change adds buildInputs 'autoconf' and 'automake'. These tools are required
only because we aren't building from a proper release tarball. Once version 0.8
comes out, these dependencies can be dropped again.

svn path=/nixpkgs/trunk/; revision=20650
This commit is contained in:
Peter Simons 2010-03-16 12:13:40 +00:00
parent f92867651f
commit b6d6f301c4
2 changed files with 19 additions and 17 deletions

View File

@ -1,14 +1,16 @@
{stdenv, fetchurl, emacs, texinfo}:
{stdenv, fetchurl, emacs, texinfo, autoconf, automake}:
stdenv.mkDerivation {
name = "magit-0.7";
name = "magit-0.7-94-gbf42bf8";
src = fetchurl {
url = "http://zagadka.vm.bytemark.co.uk/magit/magit-0.7.tar.gz";
sha256 = "0qry1vj41pycwkf71sqrz3zgzh85zdg5acq26asscq4s7jksrjiz";
url = "http://gitorious.org/magit/mainline/archive-tarball/magit_0.7-94-gbf42bf8";
sha256 = "6543a4e312d1a4249ff1edd192914d02f1a9016c321c8fdd0f015074e522759a";
};
unpackCmd = "tar xf $src";
preConfigure = "./autogen.sh";
buildInputs = [emacs texinfo];
buildInputs = [emacs texinfo autoconf automake];
meta = {
description = "An an interface to Git, implemented as an extension to Emacs.";

View File

@ -7174,7 +7174,7 @@ let
};
magit = import ../applications/editors/emacs-modes/magit {
inherit fetchurl stdenv emacs texinfo;
inherit fetchurl stdenv emacs texinfo autoconf automake;
};
maudeMode = import ../applications/editors/emacs-modes/maude {