Merge pull request #268619 from tweag/lib-descriptions
[NixPkgs.git] / pkgs / development / libraries / libvoikko / default.nix
blob3f5f4ef5c858c48c847669baed49e15c5fe13092
1 { stdenv
2 , lib
3 , autoreconfHook
4 , hfst-ospell
5 , fetchFromGitHub
6 , pkg-config
7 , python3
8 }:
10 stdenv.mkDerivation (finalAttrs: {
11   pname = "libvoikko";
12   version = "4.3.2";
14   src = fetchFromGitHub {
15     owner = "voikko";
16     repo = "corevoikko";
17     rev = "refs/tags/rel-libvoikko-${finalAttrs.version}";
18     hash = "sha256-0MIQ54dCxyAfdgYWmmTVF+Yfa15K2sjJyP1JNxwHP2M=";
19   };
21   sourceRoot = "${finalAttrs.src.name}/libvoikko";
23   nativeBuildInputs = [
24     autoreconfHook
25     pkg-config
26     python3
27   ];
29   buildInputs = [
30     hfst-ospell
31   ];
33   meta = with lib; {
34     homepage = "https://voikko.puimula.org/";
35     description = "Finnish language processing library";
36     license = licenses.lgpl21Plus;
37     maintainers = with maintainers; [ lurkki ];
38     platforms = platforms.unix;
39   };