about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/libraries/hspell/dicts.nix
diff options
context:
space:
mode:
Diffstat (limited to 'nixpkgs/pkgs/development/libraries/hspell/dicts.nix')
-rw-r--r--nixpkgs/pkgs/development/libraries/hspell/dicts.nix40
1 files changed, 40 insertions, 0 deletions
diff --git a/nixpkgs/pkgs/development/libraries/hspell/dicts.nix b/nixpkgs/pkgs/development/libraries/hspell/dicts.nix
new file mode 100644
index 000000000000..83942c2c1dde
--- /dev/null
+++ b/nixpkgs/pkgs/development/libraries/hspell/dicts.nix
@@ -0,0 +1,40 @@
+{ stdenv, hspell }:
+
+let
+  dict = variant: a: stdenv.mkDerivation ({
+    inherit (hspell) src patchPhase nativeBuildInputs;
+    buildFlags = [ variant ];
+
+    meta = hspell.meta // {
+      broken = true;
+      description = "${variant} Hebrew dictionary";
+    } // (if a ? meta then a.meta else {});
+  } // (removeAttrs a ["meta"]));
+in
+{
+  recurseForDerivations = true;
+
+  aspell = dict "aspell" {
+    name = "aspell-dict-he-${hspell.version}";
+
+    installPhase = ''
+      mkdir -p $out/lib/aspell
+      cp -v he_affix.dat he.wl $out/lib/aspell'';
+  };
+
+  myspell = dict "myspell" {
+    name = "myspell-dict-he-${hspell.version}";
+
+    installPhase = ''
+      mkdir -p $out/lib/myspell
+      cp -v he.dic he.aff $out/lib/myspell'';
+  };
+
+  hunspell = dict "hunspell" {
+    name = "hunspell-dict-he-${hspell.version}";
+
+    installPhase = ''
+      mkdir -p $out/lib
+      cp -rv hunspell $out/lib'';
+  };
+}