2021-01-21 17:00:13 +00:00
|
|
|
{ lib, stdenv, fetchurl
|
2021-01-19 06:50:56 +00:00
|
|
|
, automake, autoconf, libtool, pkg-config, autoconf-archive
|
2017-08-08 09:34:09 +00:00
|
|
|
}:
|
|
|
|
|
|
|
|
let
|
2021-11-03 12:43:23 +00:00
|
|
|
release = lib.importJSON ./release-info/LanguageMachines-frogdata.json;
|
2017-08-08 09:34:09 +00:00
|
|
|
in
|
|
|
|
|
|
|
|
stdenv.mkDerivation {
|
2018-05-24 04:37:33 +00:00
|
|
|
name = "frogdata-${release.version}";
|
2017-08-08 09:34:09 +00:00
|
|
|
version = release.version;
|
|
|
|
src = fetchurl { inherit (release) url sha256;
|
|
|
|
name = "frogdata-${release.version}.tar.gz"; };
|
2021-01-19 06:50:56 +00:00
|
|
|
nativeBuildInputs = [ pkg-config ];
|
2017-09-05 21:26:13 +00:00
|
|
|
buildInputs = [ automake autoconf libtool autoconf-archive
|
2017-08-08 09:34:09 +00:00
|
|
|
];
|
|
|
|
|
|
|
|
preConfigure = ''
|
|
|
|
sh bootstrap.sh
|
|
|
|
'';
|
|
|
|
|
2021-01-21 17:00:13 +00:00
|
|
|
meta = with lib; {
|
2017-08-08 09:34:09 +00:00
|
|
|
description = "Data for Frog, a Tagger-Lemmatizer-Morphological-Analyzer-Dependency-Parser for Dutch";
|
2020-04-01 01:11:51 +00:00
|
|
|
homepage = "https://languagemachines.github.io/frog";
|
2017-08-08 09:34:09 +00:00
|
|
|
license = licenses.gpl3;
|
|
|
|
platforms = platforms.all;
|
|
|
|
maintainers = with maintainers; [ roberth ];
|
|
|
|
};
|
|
|
|
|
|
|
|
}
|