about summary refs log tree commit diff
path: root/overlays/patches/emacs/overlay/hydra/pkgs.nix
diff options
context:
space:
mode:
Diffstat (limited to 'overlays/patches/emacs/overlay/hydra/pkgs.nix')
-rw-r--r--overlays/patches/emacs/overlay/hydra/pkgs.nix18
1 files changed, 0 insertions, 18 deletions
diff --git a/overlays/patches/emacs/overlay/hydra/pkgs.nix b/overlays/patches/emacs/overlay/hydra/pkgs.nix
deleted file mode 100644
index c926f6654165..000000000000
--- a/overlays/patches/emacs/overlay/hydra/pkgs.nix
+++ /dev/null
@@ -1,18 +0,0 @@
-nixpkgs:
-
-import nixpkgs {
-  overlays = [
-    (import ../default.nix)
-    (self: super: let
-      inherit (self) lib;
-    in {
-      # Build package sets and remove merged root-level packages since they are
-      # both present in each respective sub set and in the top-level
-      mkEmacsSet = emacs: super.recurseIntoAttrs (
-        lib.filterAttrs
-        (n: v: builtins.typeOf v == "set" && ! lib.isDerivation v)
-        (self.emacsPackagesFor emacs)
-      );
-    })
-  ];
-}