frog: init at v0.13.7
This commit is contained in:
@@ -0,0 +1,31 @@
|
||||
{ stdenv, fetchurl
|
||||
, automake, autoconf, libtool, pkgconfig, autoconf-archive
|
||||
, libxml2, icu
|
||||
, languageMachines
|
||||
}:
|
||||
|
||||
let
|
||||
release = builtins.fromJSON (builtins.readFile ./release-info/LanguageMachines-frogdata.json);
|
||||
in
|
||||
|
||||
stdenv.mkDerivation {
|
||||
name = "frogdata";
|
||||
version = release.version;
|
||||
src = fetchurl { inherit (release) url sha256;
|
||||
name = "frogdata-${release.version}.tar.gz"; };
|
||||
buildInputs = [ automake autoconf libtool pkgconfig autoconf-archive
|
||||
];
|
||||
|
||||
preConfigure = ''
|
||||
sh bootstrap.sh
|
||||
'';
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
description = "Data for Frog, a Tagger-Lemmatizer-Morphological-Analyzer-Dependency-Parser for Dutch";
|
||||
homepage = https://languagemachines.github.io/frog;
|
||||
license = licenses.gpl3;
|
||||
platforms = platforms.all;
|
||||
maintainers = with maintainers; [ roberth ];
|
||||
};
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user