summary refs log tree commit diff stats
path: root/overlays
diff options
context:
space:
mode:
authorAlan Pearce2024-05-18 14:58:50 +0200
committerAlan Pearce2024-05-18 19:04:50 +0200
commitb2ad0c7cb46cc809614ecaa45b1413f225309e54 (patch)
treece9744267058d34a845282db60ace0420cbead87 /overlays
parent31db71eacbb7977faf8ae5fd5886d72f4251ce63 (diff)
downloadnixfiles-b2ad0c7cb46cc809614ecaa45b1413f225309e54.tar.lz
nixfiles-b2ad0c7cb46cc809614ecaa45b1413f225309e54.tar.zst
nixfiles-b2ad0c7cb46cc809614ecaa45b1413f225309e54.zip
user: fix jinx-mode missing dictionaries when launched from DE
remove aspell, use nuspell/hunspell instead. They already know where
to look for dictionaries.
Diffstat (limited to 'overlays')
-rw-r--r--overlays/extra-packages.nix23
1 files changed, 13 insertions, 10 deletions
diff --git a/overlays/extra-packages.nix b/overlays/extra-packages.nix
index 0e0451d0..0bc408bf 100644
--- a/overlays/extra-packages.nix
+++ b/overlays/extra-packages.nix
@@ -13,14 +13,17 @@ self: super: {
         '';
       };
   });
-  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;
-  });
+  enchant =
+    let
+      file = builtins.fetchurl {
+        url = "https://raw.githubusercontent.com/alanpearce/nixpkgs/7ee75d6aa9b088922b47b69c1912b2afe000ae52/pkgs/development/libraries/enchant/2.x.nix";
+        sha256 = "1y7h3fvp7ghcfb5v3h6riiv7z2bzgnxm0p696bbhfb0gwwv9q8aw";
+      };
+    in
+    super.callPackage file {
+      withHspell = false;
+      withAspell = false;
+
+      inherit (super.darwin.apple_sdk.frameworks) Cocoa;
+    };
 }