summary refs log tree commit diff
path: root/pkgs/applications/editors/emacs-modes/magit/default.nix
blob: 4e2601cc106c029d9e1a9d9d2292ff2d2a63d94f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
{ stdenv, fetchurl, emacs, texinfo }:

let
  version = "1.2.0";
in
stdenv.mkDerivation rec {
  name = "magit-${version}";

  src = fetchurl {
    url = "https://github.com/downloads/magit/magit/${name}.tar.gz";
    sha256 = "1a8vvilhd5y5vmlpsh194qpl4qlg0a1brylfscxcacpfp0cmhlzg";
  };

  buildInputs = [ emacs texinfo ];

  configurePhase = "makeFlagsArray=( PREFIX=$out SYSCONFDIR=$out/etc )";

  # Add (require 'magit-site-init) to your ~/.emacs file to set-up magit mode.
  postInstall = ''
    mv $out/etc/emacs/site-start.d/50magit.el $out/share/emacs/site-lisp/magit-site-init.el
    sed -i -e 's|50magit|magit-site-init|' $out/share/emacs/site-lisp/magit-site-init.el
    rmdir $out/etc/emacs/site-start.d $out/etc/emacs $out/etc
  '';

  meta = {
    homepage = "https://github.com/magit/magit";
    description = "Magit, an Emacs interface to Git";
    license = "GPLv3+";

    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.
    '';

    platforms = stdenv.lib.platforms.all;
    maintainers = with stdenv.lib.maintainers; [ simons ];
  };
}