mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-11 04:02:55 +03:00
kytea: init at 0.4.7
This commit is contained in:
parent
01c197df68
commit
9dc5952bfa
28
pkgs/tools/text/kytea/default.nix
Normal file
28
pkgs/tools/text/kytea/default.nix
Normal file
@ -0,0 +1,28 @@
|
||||
{ stdenv, fetchurl }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
|
||||
name = "kytea-${version}";
|
||||
version = "0.4.7";
|
||||
|
||||
src = fetchurl {
|
||||
url = "http://www.phontron.com/kytea/download/kytea-0.4.6.tar.gz";
|
||||
sha256 = "0n6d88j0qda4dmy6mcj0cyin46n05m5phvjiah9i4ip54h8vs9s3";
|
||||
};
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
homepage = http://www.phontron.com/kytea/;
|
||||
description = "General toolkit developed for analyzing text";
|
||||
|
||||
longDescription = ''
|
||||
A general toolkit developed for analyzing text, with a focus on Japanese,
|
||||
Chinese and other languages requiring word or morpheme segmentation.
|
||||
'';
|
||||
|
||||
license = licenses.asl20;
|
||||
|
||||
maintainers = [ maintainers.ericsagnes ];
|
||||
platforms = platforms.linux;
|
||||
};
|
||||
|
||||
}
|
@ -2224,6 +2224,8 @@ in
|
||||
|
||||
kst = qt5.callPackage ../tools/graphics/kst { gsl = gsl_1; };
|
||||
|
||||
kytea = callPackage ../tools/text/kytea { };
|
||||
|
||||
leocad = callPackage ../applications/graphics/leocad { };
|
||||
|
||||
less = callPackage ../tools/misc/less { };
|
||||
|
Loading…
Reference in New Issue
Block a user