about summary refs log tree commit diff
path: root/pkgs/top-level/emacs-packages.nix
blob: 5732e47bf9c2145206e7a4ab3a49a5c0395a5612 (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
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
# package.el-based emacs packages

## FOR USERS
#
# Recommended: simply use `emacsWithPackages` with the packages you want.
#
# Alterative: use `emacs`, install everything to a system or user profile
# and then add this at the start your `init.el`:
/*
  (require 'package)

  ;; optional. makes unpure packages archives unavailable
  (setq package-archives nil)

  ;; optional. use this if you install emacs packages to the system profile
  (add-to-list 'package-directory-list "/run/current-system/sw/share/emacs/site-lisp/elpa")

  ;; optional. use this if you install emacs packages to user profiles (with nix-env)
  (add-to-list 'package-directory-list "~/.nix-profile/share/emacs/site-lisp/elpa")

  (package-initialize)
*/

## FOR CONTRIBUTORS
#
# When adding a new package here please note that
# * please use `elpaBuild` for pre-built package.el packages and
#   `melpaBuild` or `trivialBuild` if the package must actually
#   be built from the source.
# * lib.licenses are `with`ed on top of the file here
# * both trivialBuild and melpaBuild will automatically derive a
#   `meta` with `platforms` and `homepage` set to something you are
#   unlikely to want to override for most packages

{ lib, newScope, stdenv, fetchurl, fetchFromGitHub, runCommand, writeText

, emacs, texinfo, lndir, makeWrapper
, trivialBuild
, melpaBuild

, external
, pkgs
}:

with lib.licenses;

let

  elpaPackages = import ../applications/editors/emacs-modes/elpa-packages.nix {
    inherit lib stdenv texinfo;
  };

  # Contains both melpa stable & unstable
  melpaGeneric = import ../applications/editors/emacs-modes/melpa-packages.nix {
    inherit external lib pkgs;
  };

  melpaStablePackages = self: let
    m = melpaGeneric "stable" self;
  in {melpaStablePackages = m;} // m;

  melpaPackages = self: let
    m = melpaGeneric "unstable" self;
  in {melpaPackages = m;} // m;

  orgPackages = import ../applications/editors/emacs-modes/org-packages.nix { };

  emacsWithPackages = import ../build-support/emacs/wrapper.nix {
    inherit lib lndir makeWrapper stdenv runCommand;
  };

  packagesFun = self: with self; {

    inherit emacs melpaBuild trivialBuild;

    emacsWithPackages = emacsWithPackages self;

    ## START HERE

    elisp-ffi = melpaBuild rec {
      pname = "elisp-ffi";
      version = "1.0.0";
      src = fetchFromGitHub {
        owner = "skeeto";
        repo = "elisp-ffi";
        rev = "${version}";
        sha256 = "0z2n3h5l5fj8wl8i1ilfzv11l3zba14sgph6gz7dx7q12cnp9j22";
      };
      buildInputs = [ external.libffi ];
      preBuild = "make";
      recipe = writeText "recipe" ''
        (elisp-ffi
        :repo "skeeto/elisp-ffi"
        :fetcher github
        :files ("ffi-glue" "ffi.el"))
      '';
      meta = {
        description = "Emacs Lisp Foreign Function Interface";
        longDescription = ''
          This library provides an FFI for Emacs Lisp so that Emacs
          programs can invoke functions in native libraries. It works by
          driving a subprocess to do the heavy lifting, passing result
          values on to Emacs.
        '';
        license = publicDomain;
      };
    };

    agda2-mode = with external; trivialBuild {
      pname = "agda-mode";
      version = Agda.version;

      phases = [ "buildPhase" "installPhase" ];

      # already byte-compiled by Agda builder
      buildPhase = ''
        agda=`${Agda}/bin/agda-mode locate`
        cp `dirname $agda`/*.el* .
      '';

      meta = {
        description = "Agda2-mode for Emacs extracted from Agda package";
        longDescription = ''
          Wrapper packages that liberates init.el from `agda-mode locate` magic.
          Simply add this to user profile or systemPackages and do `(require 'agda2)` in init.el.
        '';
        homepage = Agda.meta.homepage;
        license = Agda.meta.license;
      };
    };

    ess-R-object-popup =
      callPackage ../applications/editors/emacs-modes/ess-R-object-popup { };

    filesets-plus = callPackage ../applications/editors/emacs-modes/filesets-plus { };

    font-lock-plus = callPackage ../applications/editors/emacs-modes/font-lock-plus { };

    ghc-mod = melpaBuild rec {
      pname = "ghc";
      version = external.ghc-mod.version;
      src = external.ghc-mod.src;
      packageRequires = [ haskell-mode ];
      propagatedUserEnvPkgs = [ external.ghc-mod ];
      recipe = writeText "recipe" ''
        (ghc-mod :repo "DanielG/ghc-mod" :fetcher github :files ("elisp/*.el"))
      '';
      fileSpecs = [ "elisp/*.el" ];
      meta = {
        description = "An extension of haskell-mode that provides completion of symbols and documentation browsing";
        license = bsd3;
      };
    };

    haskell-unicode-input-method = melpaBuild rec {
      pname = "emacs-haskell-unicode-input-method";
      version = "20110905.2307";
      src = fetchFromGitHub {
        owner = "roelvandijk";
        repo = "emacs-haskell-unicode-input-method";
        rev = "d8d168148c187ed19350bb7a1a190217c2915a63";
        sha256 = "09b7bg2s9aa4s8f2kdqs4xps3jxkq5wsvbi87ih8b6id38blhf78";
      };
      recipe = writeText "recipe" ''
        (haskell-unicode-input-method
         :repo "roelvandijk/emacs-haskell-unicode-input-method"
         :fetcher github)
      '';
      packageRequires = [];
      meta = {
        homepage = "https://melpa.org/#haskell-unicode-input-method/";
        license = lib.licenses.free;
      };
    };

    hexrgb = callPackage ../applications/editors/emacs-modes/hexrgb { };

    header2 = callPackage ../applications/editors/emacs-modes/header2 { };

    helm-words = callPackage ../applications/editors/emacs-modes/helm-words { };

    icicles = callPackage ../applications/editors/emacs-modes/icicles { };

    rtags = melpaBuild rec {
      inherit (external.rtags) version src meta;

      pname = "rtags";

      dontConfigure = true;

      propagatedUserEnvPkgs = [ external.rtags ];
      recipe = writeText "recipe" ''
        (rtags
         :repo "andersbakken/rtags" :fetcher github
         :files ("src/*.el"))
      '';
    };

    lib-requires =
      callPackage ../applications/editors/emacs-modes/lib-requires { };

    org-mac-link =
      callPackage ../applications/editors/emacs-modes/org-mac-link { };

    perl-completion =
      callPackage ../applications/editors/emacs-modes/perl-completion { };

    railgun = callPackage ../applications/editors/emacs-modes/railgun { };

    gn = callPackage ../applications/editors/emacs-modes/gn { };

    structured-haskell-mode = self.shm;

    thingatpt-plus = callPackage ../applications/editors/emacs-modes/thingatpt-plus { };

    tramp = callPackage ../applications/editors/emacs-modes/tramp { };

    yaoddmuse = callPackage ../applications/editors/emacs-modes/yaoddmuse { };

    zeitgeist = callPackage ../applications/editors/emacs-modes/zeitgeist { };

  };

in lib.makeScope newScope (self:
  removeAttrs ({}
  // elpaPackages self
  // melpaStablePackages self
  // melpaPackages self
  // orgPackages self
  // packagesFun self) [ "override" "overrideDerivation" ]
)