about summary refs log tree commit diff
path: root/third_party/emacs/exwm/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'third_party/emacs/exwm/default.nix')
-rw-r--r--third_party/emacs/exwm/default.nix22
1 files changed, 0 insertions, 22 deletions
diff --git a/third_party/emacs/exwm/default.nix b/third_party/emacs/exwm/default.nix
deleted file mode 100644
index b9941e83b0..0000000000
--- a/third_party/emacs/exwm/default.nix
+++ /dev/null
@@ -1,22 +0,0 @@
-# EXWM is present in nixpkgs and we do not (currently) intend to
-# change the code structure, so the existing drv can be reused.
-{ pkgs, lib, ... }:
-
-let
-  inherit (pkgs.emacsPackages) melpaBuild xelb;
-in melpaBuild {
-  pname = "exwm";
-  ename = "exwm";
-  version = "0.24";
-  src = ./.;
-  packageRequires = [ xelb ];
-
-  recipe = builtins.toFile "recipe.el" ''
-    (exwm :fetcher github :repo "ch11ng/exwm")
-  '';
-
-  meta = {
-    homepage = "https://elpa.gnu.org/packages/exwm.html";
-    license = lib.licenses.free;
-  };
-}