This commit was created by a combination of scripts and tools: - an ast-grep script to prefix things in meta with `lib.`, - a modified nixf-diagnose / nixf combination to remove unused `with lib;`, and - regular nixfmt. Co-authored-by: Wolfgang Walther <walther@technowledgy.de>
54 lines
1.0 KiB
Nix
54 lines
1.0 KiB
Nix
{
|
|
lib,
|
|
stdenv,
|
|
fetchFromGitHub,
|
|
gitUpdater,
|
|
autoreconfHook,
|
|
libtool,
|
|
pkg-config,
|
|
autoconf-archive,
|
|
frog,
|
|
}:
|
|
|
|
stdenv.mkDerivation (finalAttrs: {
|
|
pname = "frogdata";
|
|
version = "0.22";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "LanguageMachines";
|
|
repo = "frogdata";
|
|
tag = "v${finalAttrs.version}";
|
|
hash = "sha256-N5AA3y18nPpqrnkDpnTweucz6l1aabQyosX4OwPBUzo=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
pkg-config
|
|
autoreconfHook
|
|
];
|
|
buildInputs = [
|
|
libtool
|
|
autoconf-archive
|
|
];
|
|
|
|
passthru = {
|
|
updateScript = gitUpdater { rev-prefix = "v"; };
|
|
tests = {
|
|
/**
|
|
Reverse dependencies. Does not respect overrides.
|
|
*/
|
|
reverseDependencies = lib.recurseIntoAttrs {
|
|
inherit frog;
|
|
};
|
|
};
|
|
};
|
|
|
|
meta = {
|
|
description = "Data for Frog, a Tagger-Lemmatizer-Morphological-Analyzer-Dependency-Parser for Dutch";
|
|
homepage = "https://languagemachines.github.io/frog";
|
|
license = lib.licenses.gpl3;
|
|
platforms = lib.platforms.all;
|
|
maintainers = with lib.maintainers; [ roberth ];
|
|
};
|
|
|
|
})
|