about summary refs log tree commit diff
path: root/tools/emacs/default.nix
blob: b90693a85912838bc0ad45729a1f8146c3ca8e5c (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
# This file assembles a preconfigured Emacs with the dependencies that
# I need.
#
# It can either build Emacs itself (`-A complete`) or just the
# configuration (`-A config`). If the configuration is built
# separately (e.g. for work machines where Emacs itself is installed
# by other means) it is important that the versions of Emacs are kept
# in sync.

{ pkgs, ... }:

with pkgs;
with third_party.emacsPackagesNg;

let
  emacsWithPackages = (third_party.emacsPackagesNgGen third_party.emacs26).emacsWithPackages;

  carpMode = melpaBuild {
    pname = "carp-mode";
    ename = "carp-mode";
    version = "3.0";
    recipe = builtins.toFile "recipe" ''
      (carp-mode :fetcher github
                 :repo "carp-lang/carp"
                 :files ("emacs/*.el"))
    '';

    packageRequires = [ clojure-mode ];
    src = third_party.fetchFromGitHub {
      owner = "carp-lang";
      repo = "carp";
      rev = "6954642cadee730885717201c3180c7acfb1bfa9";
      sha256 = "1pz4x2qkwjbz789bwc6nkacrjpzlxawxhl2nv0xdp731y7q7xyk9";
    };
  };

  complete = (emacsWithPackages(epkgs:
  # Actual ELPA packages (the enlightened!)
  (with epkgs.elpaPackages; [
    ace-window
    avy
    pinentry
    rainbow-mode
    undo-tree
  ]) ++

  # MELPA packages:
  (with epkgs.melpaPackages; [
    browse-kill-ring
    cargo
    clojure-mode
    counsel
    counsel-notmuch
    dash-functional
    direnv
    dockerfile-mode
    # TODO: eglot removed until workspace-folders are supported (needed for gopls)
    # eglot
    elixir-mode
    elm-mode
    erlang
    exwm
    go-mode
    gruber-darker-theme
    haskell-mode
    ht
    hydra
    idle-highlight-mode
    intero
    ivy
    ivy-pass
    ivy-prescient
    jq-mode
    kotlin-mode
    lsp-mode
    magit
    markdown-toc
    multi-term
    multiple-cursors
    nginx-mode
    nix-mode
    paredit
    password-store
    pg
    notmuch # this comes from pkgs.third_party
    prescient
    racket-mode
    rainbow-delimiters
    restclient
    sly
    smartparens
    string-edit
    swiper
    telephone-line
    terraform-mode
    toml-mode
    transient
    use-package
    uuidgen
    web-mode
    websocket
    which-key
    xelb
    yaml-mode
  ]) ++

  # Custom packages
  [ carpMode ]
  ));
in {
  inherit complete;
  depsOnly = complete.deps;
}