about summary refs log tree commit diff
path: root/infra
diff options
context:
space:
mode:
authorVincent Ambo <tazjin@google.com>2019-12-14T11·57+0000
committerVincent Ambo <tazjin@google.com>2019-12-14T11·57+0000
commit863f5b146d43326f9f1930ee49b80f69c9e50b62 (patch)
tree56ad2e9e0890f6c562cacc27f72e5b1683bcee6d /infra
parentb4f835e21ccc4f166956591a8b5658fdcb96f3ee (diff)
chore(emacs): Move Nix derivation for building Emacs over from infra r/136
Diffstat (limited to 'infra')
-rw-r--r--infra/nixos/emacs.nix138
1 files changed, 0 insertions, 138 deletions
diff --git a/infra/nixos/emacs.nix b/infra/nixos/emacs.nix
deleted file mode 100644
index 24426bc438..0000000000
--- a/infra/nixos/emacs.nix
+++ /dev/null
@@ -1,138 +0,0 @@
-# Derivation for Emacs pre-configured with packages that I need.
-#
-# TODO: Fix sly (again)
-
-{ pkgs }:
-
-with pkgs; with emacsPackagesNg;
-let emacsWithPackages = (emacsPackagesNgGen emacs).emacsWithPackages;
-
-# As the EXWM-README points out, XELB should be built from source if
-# EXWM is.
-xelb = melpaBuild {
-  pname   = "xelb";
-  ename   = "xelb";
-  version = "0.15";
-  recipe  = builtins.toFile "recipe" ''
-    (xelb :fetcher github
-          :repo "ch11ng/xelb")
-  '';
-
-  packageRequires = [ cl-generic emacs ];
-
-  src = fetchFromGitHub {
-    owner  = "ch11ng";
-    repo   = "xelb";
-    rev    = "b8f168b401977098fe2b30f4ca32629c0ab6eb83";
-    sha256 = "1ack1h68x8ia0ji6wbhmayrakq35p5sgrrl6qvha3ns3pswc0pl9";
- };
-};
-
-# EXWM pinned to a newer version than what is released due to a
-# potential fix for ch11ng/exwm#425.
-exwm = melpaBuild {
-  pname   = "exwm";
-  ename   = "exwm";
-  version = "0.19";
-  recipe  = builtins.toFile "recipe" ''
-    (exwm :fetcher github
-          :repo "ch11ng/exwm")
-  '';
-
-  packageRequires = [ xelb ];
-
-  src = fetchFromGitHub {
-    owner  = "ch11ng";
-    repo   = "exwm";
-    rev    = "472f7cb82b67b98843f10c12e6bda9b8ae7262bc";
-    sha256 = "19gflsrb19aijf2xcw7j2m658qad21nbwziw38s1h2jw66vhk8dj";
- };
-};
-
-slyFixed = sly.overrideAttrs(_: {
-  recipe = builtins.toFile "recipe" ''
-(sly :repo "joaotavora/sly"
-     :fetcher github
-     :files ("*.el"
-             ("lib" "lib/*")
-             ("contrib" "contrib/*")
-             "doc/*.texi"
-             "doc/*.info"
-             "doc/dir"))
-'';
-});
-
-in emacsWithPackages(epkgs:
-  # Actual ELPA packages (the enlightened!)
-  (with epkgs.elpaPackages; [
-    ace-window
-    avy
-    company
-    pinentry
-    rainbow-mode
-    undo-tree
-    which-key
-  ]) ++
-
-  # MELPA packages:
-  (with epkgs.melpaPackages; [
-    browse-kill-ring
-    cargo
-    counsel
-    counsel-notmuch
-    dash
-    dash-functional
-    dockerfile-mode
-    edit-server
-    eglot
-    elixir-mode
-    erlang
-    elm-mode
-    exwm
-    go-mode
-    gruber-darker-theme
-    haskell-mode
-    ht
-    hydra
-    idle-highlight-mode
-    intero
-    ivy
-    ivy-pass
-    ivy-prescient
-    jq-mode
-    kotlin-mode
-    magit
-    markdown-mode
-    markdown-toc
-    meghanada
-    multi-term
-    multiple-cursors
-    nginx-mode
-    nix-mode
-    omnisharp
-    paredit
-    password-store
-    pg
-    pkgs.notmuch
-    prescient
-    rainbow-delimiters
-    restclient
-    rust-mode
-    s
-    slyFixed
-    smartparens
-    string-edit
-    swiper
-    telephone-line
-    terraform-mode
-    toml-mode
-    use-package
-    uuidgen
-    web-mode
-    websocket
-    yaml-mode
-  ]) ++
-
-  # Custom packaged Emacs packages:
-  [ xelb exwm ]
-)