2022-12-27 12:26:54 +00:00
|
|
|
{ lib, stdenv, fetchurl, fetchpatch, cmake, protobuf, libiconv }:
|
2020-12-31 07:48:55 +00:00
|
|
|
|
2018-04-17 09:37:44 +00:00
|
|
|
stdenv.mkDerivation rec {
|
2018-05-28 12:59:57 +00:00
|
|
|
pname = "jumanpp";
|
2021-05-15 08:40:04 +00:00
|
|
|
version = "2.0.0-rc3";
|
2018-04-18 02:24:20 +00:00
|
|
|
|
2018-04-17 09:37:44 +00:00
|
|
|
src = fetchurl {
|
2019-08-15 12:41:18 +00:00
|
|
|
url = "https://github.com/ku-nlp/${pname}/releases/download/v${version}/${pname}-${version}.tar.xz";
|
2021-05-15 08:40:04 +00:00
|
|
|
sha256 = "sha256-ASdr6qbkSe71M7QmuuwidCa4xQhDVoXBJ2XqvSY53pQ=";
|
2018-04-17 09:37:44 +00:00
|
|
|
};
|
2021-05-18 19:24:54 +00:00
|
|
|
|
2022-12-27 12:26:54 +00:00
|
|
|
patches = [
|
|
|
|
./0001-Exclude-all-tests-from-the-build.patch
|
|
|
|
# https://github.com/ku-nlp/jumanpp/pull/132
|
|
|
|
(fetchpatch {
|
|
|
|
name = "fix-unused-warning.patch";
|
|
|
|
url = "https://github.com/ku-nlp/jumanpp/commit/cc0d555287c8b214e9d6f0279c449a4e035deee4.patch";
|
|
|
|
sha256 = "sha256-yRKwuUJ2UPXJcjxBGhSOmcQI/EOijiJDMmmmSRdNpX8=";
|
|
|
|
})
|
|
|
|
(fetchpatch {
|
|
|
|
name = "update-libs.patch";
|
|
|
|
url = "https://github.com/ku-nlp/jumanpp/commit/5e9068f56ae310ed7c1df185b14d49654ffe1ab6.patch";
|
|
|
|
sha256 = "sha256-X49/ZoLT0OGePLZYlgacNxA1dHM4WYdQ8I4LW3sW16E=";
|
|
|
|
})
|
|
|
|
(fetchpatch {
|
|
|
|
name = "fix-mmap-on-apple-m1.patch";
|
|
|
|
url = "https://github.com/ku-nlp/jumanpp/commit/0c22249f12928d0c962f03f229026661bf0c7921.patch";
|
|
|
|
sha256 = "sha256-g6CuruqyoMJxU/hlNoALx1QnFM8BlTsTd0pwlVrco3I=";
|
|
|
|
})
|
|
|
|
];
|
2022-01-28 16:45:33 +00:00
|
|
|
cmakeFlags = [ "-DJPP_ENABLE_TESTS=OFF" ];
|
|
|
|
|
2020-12-31 07:48:55 +00:00
|
|
|
nativeBuildInputs = [ cmake ];
|
2021-05-18 19:24:54 +00:00
|
|
|
buildInputs = [ protobuf ]
|
|
|
|
++ lib.optional stdenv.isDarwin libiconv;
|
2018-04-18 02:24:20 +00:00
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2018-04-17 09:37:44 +00:00
|
|
|
description = "A Japanese morphological analyser using a recurrent neural network language model (RNNLM)";
|
|
|
|
longDescription = ''
|
|
|
|
JUMAN++ is a new morphological analyser that considers semantic
|
|
|
|
plausibility of word sequences by using a recurrent neural network
|
|
|
|
language model (RNNLM).
|
|
|
|
'';
|
2021-07-31 17:01:50 +00:00
|
|
|
homepage = "https://nlp.ist.i.kyoto-u.ac.jp/index.php?JUMAN++";
|
2018-04-17 09:37:44 +00:00
|
|
|
license = licenses.asl20;
|
|
|
|
maintainers = with maintainers; [ mt-caret ];
|
2018-04-18 02:25:23 +00:00
|
|
|
platforms = platforms.all;
|
2018-04-17 09:37:44 +00:00
|
|
|
};
|
|
|
|
}
|