linux_xanmod: 5.11.14 -> 5.11.15
[NixPkgs.git] / pkgs / development / libraries / languagemachines / frogdata.nix
blob7e890a8d09c9a9dd1fe102217e447b6382704771
1 { lib, stdenv, fetchurl
2 , automake, autoconf, libtool, pkg-config, autoconf-archive
3 }:
5 let
6   release = builtins.fromJSON (builtins.readFile ./release-info/LanguageMachines-frogdata.json);
7 in
9 stdenv.mkDerivation {
10   name = "frogdata-${release.version}";
11   version = release.version;
12   src = fetchurl { inherit (release) url sha256;
13                    name = "frogdata-${release.version}.tar.gz"; };
14   nativeBuildInputs = [ pkg-config ];
15   buildInputs = [ automake autoconf libtool autoconf-archive
16                 ];
18   preConfigure = ''
19     sh bootstrap.sh
20   '';
22   meta = with lib; {
23     description = "Data for Frog, a Tagger-Lemmatizer-Morphological-Analyzer-Dependency-Parser for Dutch";
24     homepage    = "https://languagemachines.github.io/frog";
25     license     = licenses.gpl3;
26     platforms   = platforms.all;
27     maintainers = with maintainers; [ roberth ];
28   };