mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-15 06:14:57 +01:00
f9fdf2d402
with structuredAttrs lists will be bash arrays which cannot be exported which will be a issue with some patches and some wrappers like cc-wrapper this makes it clearer that NIX_CFLAGS_COMPILE must be a string as lists in env cause a eval failure
32 lines
849 B
Nix
32 lines
849 B
Nix
{ lib, stdenv, fetchurl }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
pname = "kytea";
|
|
version = "0.4.7";
|
|
|
|
src = fetchurl {
|
|
url = "http://www.phontron.com/kytea/download/${pname}-${version}.tar.gz";
|
|
sha256 = "0ilzzwn5vpvm65bnbyb9f5rxyxy3jmbafw9w0lgl5iad1ka36jjk";
|
|
};
|
|
|
|
patches = [ ./gcc-O3.patch ];
|
|
|
|
env.NIX_CFLAGS_COMPILE = lib.optionalString stdenv.cc.isClang "-Wno-error=c++11-narrowing";
|
|
|
|
meta = with 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 = with maintainers; [ ericsagnes ];
|
|
platforms = platforms.unix;
|
|
};
|
|
|
|
}
|