about summary refs log tree commit diff
path: root/third_party/overlays/emacs.nix
diff options
context:
space:
mode:
Diffstat (limited to 'third_party/overlays/emacs.nix')
-rw-r--r--third_party/overlays/emacs.nix11
1 files changed, 11 insertions, 0 deletions
diff --git a/third_party/overlays/emacs.nix b/third_party/overlays/emacs.nix
new file mode 100644
index 000000000000..4b55a0081744
--- /dev/null
+++ b/third_party/overlays/emacs.nix
@@ -0,0 +1,11 @@
+# Emacs overlay from https://github.com/nix-community/emacs-overlay
+{ ... }:
+
+let
+  # from 2021-12-07
+  commit = "2f14e98a92505c517a8364c3a5e614592fbea4f4";
+  src = builtins.fetchTarball {
+    url = "https://github.com/nix-community/emacs-overlay/archive/${commit}.tar.gz";
+    sha256 = "16i16pm3bm43fj85n5bafghak0asi7p9xpyshpls6yyh85chcdb5";
+  };
+in import src