about summary refs log tree commit diff
path: root/third_party/emacs
diff options
context:
space:
mode:
authorVincent Ambo <mail@tazj.in>2021-10-10T10·58+0200
committertazjin <mail@tazj.in>2021-10-10T11·02+0000
commit0bb728a5d41b617d952a7a628f324351f4c17a37 (patch)
tree59d70a42ab00f0ae859b5c9866a47595195d31df /third_party/emacs
parent5a902b53c5213d107ae7290ec8946fc72976e5a1 (diff)
chore(3p/emacs): Remove unused 'explain-pause-mode' derivation r/2960
Change-Id: Ibe1a7d4b67c9986aa3da1493e0f30906209abcca
Reviewed-on: https://cl.tvl.fyi/c/depot/+/3707
Tested-by: BuildkiteCI
Reviewed-by: tazjin <mail@tazj.in>
Diffstat (limited to 'third_party/emacs')
-rw-r--r--third_party/emacs/explain-pause-mode.nix24
1 files changed, 0 insertions, 24 deletions
diff --git a/third_party/emacs/explain-pause-mode.nix b/third_party/emacs/explain-pause-mode.nix
deleted file mode 100644
index fc57d665d7..0000000000
--- a/third_party/emacs/explain-pause-mode.nix
+++ /dev/null
@@ -1,24 +0,0 @@
-{ pkgs, ... }:
-
-let
-  inherit (pkgs) emacsPackages fetchFromGitHub;
-
-  commit = "35f7d780a9c164b5c502023746473b1de3857904";
-
-in emacsPackages.melpaBuild rec {
-  pname = "explain-pause-mode";
-  version = "0.1"; # master on 20200603
-  inherit commit;
-
-  recipe = builtins.toFile "recipe.el" ''
-    (explain-pause-mode :fetcher github
-                        :repo "lastquestion/explain-pause-mode")
-  '';
-
-  src = fetchFromGitHub {
-    owner = "lastquestion";
-    repo = "explain-pause-mode";
-    rev = commit;
-    sha256 = "0d9lwzqqwmz0n94i7959rj7m24265yf3825a5g8cd7fyzxznl1pc";
-  };
-}