mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 06:45:16 +01:00
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:
parent
b43b098513
commit
f19a35aeeb
2 changed files with 8 additions and 6 deletions
|
@ -1,14 +1,15 @@
|
|||
{stdenv, fetchurl, emacs, texinfo, autoconf, automake}:
|
||||
{ stdenv, fetchgit, emacs, texinfo, autoconf, automake }:
|
||||
|
||||
let
|
||||
version = "0.7-109-g0fc3980";
|
||||
version = "0.7-180-gcb458d5";
|
||||
in
|
||||
stdenv.mkDerivation {
|
||||
name = "magit-${version}";
|
||||
|
||||
src = fetchurl {
|
||||
url = "http://cryp.to/magit-mainline-${version}.tar.gz";
|
||||
sha256 = "0jyx57znvn49xm0h92kh8iywn44ip130dpflzq2ns2k6gspg36b6";
|
||||
src = fetchgit {
|
||||
url = "http://git.gitorious.org/magit/mainline.git";
|
||||
rev = "cb458d59182a4497b3435090ae71357b6b8c385d";
|
||||
sha256 = "1vbafn0drkzhrr6yrgvf62aa9bnk785vavdgsmngjfxql1ngaq2x";
|
||||
};
|
||||
unpackCmd = "tar xf $src";
|
||||
preConfigure = "./autogen.sh";
|
||||
|
|
|
@ -7484,7 +7484,8 @@ let
|
|||
};
|
||||
|
||||
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 {
|
||||
|
|
Loading…
Reference in a new issue