pkgs/applications/editors/emacs-modes/magit: bumped to 0.8 release

svn path=/nixpkgs/trunk/; revision=21737
This commit is contained in:
Peter Simons 2010-05-12 09:09:55 +00:00
parent 657ae2a621
commit 55a322022c
2 changed files with 10 additions and 12 deletions

View file

@ -1,20 +1,17 @@
{ stdenv, fetchgit, emacs, texinfo, autoconf, automake }: { stdenv, fetchurl, emacs, texinfo }:
let let
version = "0.7-180-gcb458d5"; version = "0.8";
in in
stdenv.mkDerivation { stdenv.mkDerivation {
name = "magit-${version}"; name = "magit-${version}";
src = fetchgit { src = fetchurl {
url = "http://git.gitorious.org/magit/mainline.git"; url = "http://github.com/downloads/philjackson/magit/magit-${version}.tar.gz";
rev = "cb458d59182a4497b3435090ae71357b6b8c385d"; sha256 = "4d1b55dcb118e506c6b8838acd4a50dbdd5348b1d12edd9789a3109a582e2954";
sha256 = "1vbafn0drkzhrr6yrgvf62aa9bnk785vavdgsmngjfxql1ngaq2x";
}; };
unpackCmd = "tar xf $src";
preConfigure = "./autogen.sh";
buildInputs = [emacs texinfo autoconf automake]; buildInputs = [emacs texinfo];
meta = { meta = {
description = "An an interface to Git, implemented as an extension to Emacs."; description = "An an interface to Git, implemented as an extension to Emacs.";
@ -32,6 +29,8 @@ stdenv.mkDerivation {
''; '';
license = "GPLv3+"; license = "GPLv3+";
homepage = "http://zagadka.vm.bytemark.co.uk/magit/"; homepage = "http://github.com/philjackson/magit";
platforms = stdenv.lib.platforms.all;
maintainers = [ stdenv.lib.maintainers.simons ];
}; };
} }

View file

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