about summary refs log tree commit diff
path: root/overlays/patches/emacs/overlay/flake.nix
diff options
context:
space:
mode:
Diffstat (limited to 'overlays/patches/emacs/overlay/flake.nix')
-rw-r--r--overlays/patches/emacs/overlay/flake.nix9
1 files changed, 9 insertions, 0 deletions
diff --git a/overlays/patches/emacs/overlay/flake.nix b/overlays/patches/emacs/overlay/flake.nix
new file mode 100644
index 000000000000..e7397efaf8ed
--- /dev/null
+++ b/overlays/patches/emacs/overlay/flake.nix
@@ -0,0 +1,9 @@
+{
+  description = "Bleeding edge Emacs overlay";
+
+  outputs = { self }: {
+    # self: super: must be named final: prev: for `nix flake check` to be happy
+    overlay = final: prev:
+      import ./default.nix final prev;
+  };
+}