about summary refs log tree commit diff
path: root/overlays/patches/emacs/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'overlays/patches/emacs/default.nix')
-rw-r--r--overlays/patches/emacs/default.nix21
1 files changed, 0 insertions, 21 deletions
diff --git a/overlays/patches/emacs/default.nix b/overlays/patches/emacs/default.nix
deleted file mode 100644
index a2bfc4bdd298..000000000000
--- a/overlays/patches/emacs/default.nix
+++ /dev/null
@@ -1,21 +0,0 @@
-{ emacs, fetchpatch, ... } @ args:
-
-let
-  inherit (builtins) removeAttrs;
-in
-
-(emacs.override (removeAttrs args [ "emacs" "fetchpatch" ])).overrideAttrs (
-  { patches ? [], ... }:
-  {
-    patches = patches ++ [
-      (fetchpatch {
-        url = "https://git.savannah.gnu.org/cgit/emacs.git/patch/?id=cbfce827ace4c410a2eed50c8d8c763721925b7e";
-        sha256 = "0gy5vzcrrz7bba2y6xg6v67z625v6zbsia3i3ki0nk2ksayn9h9c";
-      })
-      (fetchpatch {
-        url = "https://git.savannah.gnu.org/cgit/emacs.git/patch/?id=13651833c73b78e509a47ab38b8c5a60134f04fc";
-        sha256 = "0plk9d8n0gsi8rpqn01qkkchwzcrig2cbr1ki9zpj140r7rywa6x";
-      })
-    ];
-  }
-)