libvoikko: init at 4.3.2

This commit is contained in:
Jussi Kuokkanen 2023-06-19 15:00:23 +03:00
parent 3fd4ac8e82
commit 22f9b7b279
2 changed files with 48 additions and 0 deletions

View File

@ -0,0 +1,40 @@
{ 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;
};
})

View File

@ -41283,4 +41283,12 @@ with pkgs;
waylyrics = callPackage ../applications/audio/waylyrics { };
gitrs = callPackage ../tools/misc/gitrs { };
libvoikko = callPackage ../development/libraries/libvoikko { };
hfst = callPackage ../development/libraries/hfst/hfst.nix { };
hfst-ospell = callPackage ../applications/misc/hfst-ospell/default.nix { };
omorfi = callPackage ../applications/misc/omorfi/omorfi.nix { };
}