mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-21 13:10:33 +00:00
hspell (another KDE dependency)
svn path=/nixpkgs/trunk/; revision=24331
This commit is contained in:
parent
586de5566a
commit
c703c1d560
28
pkgs/development/libraries/hspell/default.nix
Normal file
28
pkgs/development/libraries/hspell/default.nix
Normal file
|
@ -0,0 +1,28 @@
|
|||
{ stdenv, fetchurl, perl, zlib }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "${passthru.pname}-${passthru.version}";
|
||||
|
||||
passthru = {
|
||||
pname = "hspell";
|
||||
version = "1.1";
|
||||
};
|
||||
|
||||
src = fetchurl {
|
||||
url = "${meta.homepage}${name}.tar.gz";
|
||||
sha256 = "08x7rigq5pa1pfpl30qp353hbdkpadr1zc49slpczhsn0sg36pd6";
|
||||
};
|
||||
|
||||
patchPhase = ''patchShebangs .'';
|
||||
buildInputs = [ perl zlib ];
|
||||
|
||||
makeFlags = "CFLAGS=-fPIC";
|
||||
|
||||
meta = {
|
||||
description = "Hebrew spell checker";
|
||||
homepage = http://hspell.ivrix.org.il/;
|
||||
platforms = stdenv.lib.platforms.all;
|
||||
maintainers = [ stdenv.lib.maintainers.urkud ];
|
||||
# Note that I don't speak hebrew, so I can only fix compile problems
|
||||
};
|
||||
}
|
43
pkgs/development/libraries/hspell/dicts.nix
Normal file
43
pkgs/development/libraries/hspell/dicts.nix
Normal file
|
@ -0,0 +1,43 @@
|
|||
{ 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'';
|
||||
};
|
||||
}
|
|
@ -3069,6 +3069,10 @@ let
|
|||
|
||||
heimdal = callPackage ../development/libraries/kerberos/heimdal.nix { };
|
||||
|
||||
hspell = callPackage ../development/libraries/hspell { };
|
||||
|
||||
hspellDicts = callPackage ../development/libraries/hspell/dicts.nix { };
|
||||
|
||||
hsqldb = callPackage ../development/libraries/java/hsqldb { };
|
||||
|
||||
hunspell = callPackage ../development/libraries/hunspell { };
|
||||
|
|
Loading…
Reference in a new issue