41 lines
799 B
Nix
41 lines
799 B
Nix
{
|
|
stdenv,
|
|
lib,
|
|
autoreconfHook,
|
|
hfst-ospell,
|
|
fetchFromGitHub,
|
|
pkg-config,
|
|
python3,
|
|
}:
|
|
|
|
stdenv.mkDerivation (finalAttrs: {
|
|
pname = "libvoikko";
|
|
version = "4.3.2";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "voikko";
|
|
repo = "corevoikko";
|
|
rev = "refs/tags/rel-libvoikko-${finalAttrs.version}";
|
|
hash = "sha256-0MIQ54dCxyAfdgYWmmTVF+Yfa15K2sjJyP1JNxwHP2M=";
|
|
};
|
|
|
|
sourceRoot = "${finalAttrs.src.name}/libvoikko";
|
|
|
|
nativeBuildInputs = [
|
|
autoreconfHook
|
|
pkg-config
|
|
python3
|
|
];
|
|
|
|
buildInputs = [
|
|
hfst-ospell
|
|
];
|
|
|
|
meta = with lib; {
|
|
homepage = "https://voikko.puimula.org/";
|
|
description = "Finnish language processing library";
|
|
license = licenses.lgpl21Plus;
|
|
maintainers = with maintainers; [ lurkki ];
|
|
platforms = platforms.unix;
|
|
};
|
|
})
|