about summary refs log tree commit diff
path: root/nixpkgs/pkgs/applications/editors/emacs/sources.nix
blob: b9b18a98ac884c09e2e9c1cbe772fe6f250e9c48 (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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
{ lib
, fetchFromBitbucket
, fetchFromSavannah
}:

let
  metaFor = variant: version: rev: {
    homepage = {
      "mainline" = "https://www.gnu.org/software/emacs/";
      "macport" = "https://bitbucket.org/mituharu/emacs-mac/";
    }.${variant};
    description = "The extensible, customizable GNU text editor"
                  + lib.optionalString (variant == "macport") " - macport variant";
    longDescription = ''
      GNU Emacs is an extensible, customizable text editor—and more. At its core
      is an interpreter for Emacs Lisp, a dialect of the Lisp programming
      language with extensions to support text editing.

      The features of GNU Emacs include: content-sensitive editing modes,
      including syntax coloring, for a wide variety of file types including
      plain text, source code, and HTML; complete built-in documentation,
      including a tutorial for new users; full Unicode support for nearly all
      human languages and their scripts; highly customizable, using Emacs Lisp
      code or a graphical interface; a large number of extensions that add other
      functionality, including a project planner, mail and news reader, debugger
      interface, calendar, and more. Many of these extensions are distributed
      with GNU Emacs; others are available separately.
    '' + lib.optionalString (variant == "macport") ''

      This release is built from Mitsuharu Yamamoto's patched source code
      tailored for macOS.
    '';
    changelog = {
      "mainline" = "https://www.gnu.org/savannah-checkouts/gnu/emacs/news/NEWS.${version}";
      "macport" = "https://bitbucket.org/mituharu/emacs-mac/raw/${rev}/NEWS-mac";
    }.${variant};
    license = lib.licenses.gpl3Plus;
    maintainers = with lib.maintainers; [
      AndersonTorres
      adisbladis
      atemu
      jwiegley
      lovek323
      matthewbauer
    ];
    platforms = {
      "mainline" = lib.platforms.all;
      "macport" = lib.platforms.darwin;
    }.${variant};
    mainProgram = "emacs";
  };
in
{
  emacs28 = import ./generic.nix {
    pname = "emacs";
    version = "28.2";
    variant = "mainline";
    src = fetchFromSavannah {
      repo = "emacs";
      rev = "28.2";
      hash = "sha256-4oSLcUDR0MOEt53QOiZSVU8kPJ67GwugmBxdX3F15Ag=";
    };

    meta = metaFor "mainline" "28.2" "28.2";
  };

  emacs29 = import ./generic.nix {
    pname = "emacs";
    version = "29.1";
    variant = "mainline";
    src = fetchFromSavannah {
      repo = "emacs";
      rev = "29.1";
      hash = "sha256-3HDCwtOKvkXwSULf3W7YgTz4GV8zvYnh2RrL28qzGKg=";
    };

    meta = metaFor "mainline" "29.1" "29.1";
  };

  emacs28-macport = import ./generic.nix {
    pname = "emacs-mac";
    version = "28.2";
    variant = "macport";
    src = fetchFromBitbucket {
      owner = "mituharu";
      repo = "emacs-mac";
      rev = "emacs-28.2-mac-9.1";
      hash = "sha256-Ne2jQ2nVLNiQmnkkOXVc5AkLVkTpm8pFC7VNY2gQjPE=";
    };

    meta = metaFor "macport" "28.2" "emacs-28.2-mac-9.1";
  };

  emacs29-macport = import ./generic.nix {
    pname = "emacs-mac";
    version = "29.1";
    variant = "macport";

    src = fetchFromBitbucket {
      owner = "mituharu";
      repo = "emacs-mac";
      rev = "emacs-29.1-mac-10.0";
      hash = "sha256-TE829qJdPjeOQ+kD0SfyO8d5YpJjBge/g+nScwj+XVU=";
    };

    meta = metaFor "macport" "29.1" "emacs-29.1-mac-10.0";
  };
}