uboot: (firmwareOdroidC2/C4) don't invoke patch tool, use patches = [] instead
https://github.com/NixOS/nixpkgs/blob/master/pkgs/stdenv/generic/setup.sh#L948 this can do it nicely. Signed-off-by: Anton Arapov <anton@deadbeef.mx>
This commit is contained in:
commit
56de2bcd43
30691 changed files with 3076956 additions and 0 deletions
32
pkgs/development/libraries/languagemachines/uctodata.nix
Normal file
32
pkgs/development/libraries/languagemachines/uctodata.nix
Normal file
|
|
@ -0,0 +1,32 @@
|
|||
{ lib, stdenv, fetchurl
|
||||
, automake, autoconf, libtool, pkg-config, autoconf-archive
|
||||
}:
|
||||
|
||||
let
|
||||
release = lib.importJSON ./release-info/LanguageMachines-uctodata.json;
|
||||
in
|
||||
|
||||
stdenv.mkDerivation {
|
||||
pname = "uctodata";
|
||||
version = release.version;
|
||||
src = fetchurl { inherit (release) url sha256;
|
||||
name = "uctodata-${release.version}.tar.gz"; };
|
||||
nativeBuildInputs = [ pkg-config automake autoconf ];
|
||||
buildInputs = [ libtool autoconf-archive ];
|
||||
preConfigure = "sh bootstrap.sh";
|
||||
|
||||
meta = with lib; {
|
||||
description = "A rule-based tokenizer for natural language";
|
||||
homepage = "https://languagemachines.github.io/ucto/";
|
||||
license = licenses.gpl3;
|
||||
platforms = platforms.all;
|
||||
maintainers = with maintainers; [ roberth ];
|
||||
|
||||
longDescription = ''
|
||||
Ucto tokenizes text files: it separates words from punctuation, and splits sentences. It offers several other basic preprocessing steps such as changing case that you can all use to make your text suited for further processing such as indexing, part-of-speech tagging, or machine translation.
|
||||
|
||||
Ucto comes with tokenisation rules for several languages and can be easily extended to suit other languages. It has been incorporated for tokenizing Dutch text in Frog, a Dutch morpho-syntactic processor.
|
||||
'';
|
||||
};
|
||||
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue