55a322022c
svn path=/nixpkgs/trunk/; revision=21737
37 lines
1.1 KiB
Nix
37 lines
1.1 KiB
Nix
{ stdenv, fetchurl, emacs, texinfo }:
|
|
|
|
let
|
|
version = "0.8";
|
|
in
|
|
stdenv.mkDerivation {
|
|
name = "magit-${version}";
|
|
|
|
src = fetchurl {
|
|
url = "http://github.com/downloads/philjackson/magit/magit-${version}.tar.gz";
|
|
sha256 = "4d1b55dcb118e506c6b8838acd4a50dbdd5348b1d12edd9789a3109a582e2954";
|
|
};
|
|
|
|
buildInputs = [emacs texinfo];
|
|
|
|
meta = {
|
|
description = "An an interface to Git, implemented as an extension to Emacs.";
|
|
|
|
longDescription = ''
|
|
With Magit, you can inspect and modify your Git repositories with
|
|
Emacs. You can review and commit the changes you have made to the
|
|
tracked files, for example, and you can browse the history of past
|
|
changes. There is support for cherry picking, reverting, merging,
|
|
rebasing, and other common Git operations.
|
|
|
|
Magit is not a complete interface to Git; it just aims to make the
|
|
most common Git operations convenient. Thus, Magit will likely not
|
|
save you from learning Git itself.
|
|
'';
|
|
|
|
license = "GPLv3+";
|
|
homepage = "http://github.com/philjackson/magit";
|
|
platforms = stdenv.lib.platforms.all;
|
|
maintainers = [ stdenv.lib.maintainers.simons ];
|
|
};
|
|
}
|