frog: init at v0.13.7

This commit is contained in:
Robert Hensing
2017-08-14 12:57:54 +02:00
parent eb9f427d4e
commit c5ec8cf523
23 changed files with 516 additions and 0 deletions
@@ -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 ];
};
}