diff options
Diffstat (limited to 'user/overlays')
-rw-r--r-- | user/overlays/extra-packages.nix | 22 |
1 files changed, 0 insertions, 22 deletions
diff --git a/user/overlays/extra-packages.nix b/user/overlays/extra-packages.nix deleted file mode 100644 index ebe4fb0c..00000000 --- a/user/overlays/extra-packages.nix +++ /dev/null @@ -1,22 +0,0 @@ -self: super: { - emacsPackagesFor = emacs: ( - (super.emacsPackagesFor emacs).overrideScope ( - eself: esuper: - esuper // { - tabnine-capf = super.callPackage ../packages/tabnine-capf.nix { - inherit eself; - }; - } - ) - ); - enchant = super.enchant.overrideAttrs (old: { - configureFlags = old.configureFlags ++ [ "--without-hspell" ] - # builtins.filter (c: c != "--with-hspell") old.configureFlags - ++ self.lib.optional super.stdenv.isDarwin "--with-applespell" - ; - buildInputs = - builtins.filter (c: c.name != "hspell") old.buildInputs - ++ self.lib.optionals super.stdenv.isDarwin (with super.darwin.apple_sdk.frameworks; [ Cocoa ]); - propagatedBuildInputs = builtins.filter (c: c.name != "hspell") old.propagatedBuildInputs; - }); -} |