nixpkgs/pkgs/development/libraries/hspell/dicts.nix
Yury G. Kudryashov c703c1d560 hspell (another KDE dependency)
svn path=/nixpkgs/trunk/; revision=24331
2010-10-17 18:44:00 +00:00

44 lines
882 B
Nix

{ stdenv, hspell }:
let
dict = a: stdenv.mkDerivation ({
inherit (hspell) src patchPhase buildNativeInputs;
meta = hspell.meta // {
description = "${a.buildFlags} Hebrew dictionary";
} // a.meta;
} // (removeAttrs ["meta"] a));
in
{
recurseForDerivations = true;
aspell = dict {
name = "aspell-dict-he-${hspell.version}";
buildFlags = "aspell";
installPhase = ''
mkdir -p $out/lib/aspell
cp -v he_affix.dat he.wl $out/lib/aspell'';
};
myspell = dict {
name = "myspell-dict-he-${hspell.version}";
buildFlags = "myspell";
installPhase = ''
mkdir -p $out/lib/myspell
cp -v he.dic he.aff $out/lib/myspell'';
};
hunspell = dict {
name = "hunspell-dict-he-${hspell.version}";
buildFlags = "hunspell";
installPhase = ''
mkdir -p $out/lib
cp -rv hunspell $out/lib'';
};
}