Magit: Latest version.

The tarball at crypt.to had vanished, and hopefully `fetchgit' over HTTP
will work for everyone.

svn path=/nixpkgs/trunk/; revision=21722
This commit is contained in:
Ludovic Courtès 2010-05-11 14:56:28 +00:00
parent b43b098513
commit f19a35aeeb
2 changed files with 8 additions and 6 deletions

View file

@ -1,14 +1,15 @@
{stdenv, fetchurl, emacs, texinfo, autoconf, automake}: { stdenv, fetchgit, emacs, texinfo, autoconf, automake }:
let let
version = "0.7-109-g0fc3980"; version = "0.7-180-gcb458d5";
in in
stdenv.mkDerivation { stdenv.mkDerivation {
name = "magit-${version}"; name = "magit-${version}";
src = fetchurl { src = fetchgit {
url = "http://cryp.to/magit-mainline-${version}.tar.gz"; url = "http://git.gitorious.org/magit/mainline.git";
sha256 = "0jyx57znvn49xm0h92kh8iywn44ip130dpflzq2ns2k6gspg36b6"; rev = "cb458d59182a4497b3435090ae71357b6b8c385d";
sha256 = "1vbafn0drkzhrr6yrgvf62aa9bnk785vavdgsmngjfxql1ngaq2x";
}; };
unpackCmd = "tar xf $src"; unpackCmd = "tar xf $src";
preConfigure = "./autogen.sh"; preConfigure = "./autogen.sh";

View file

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