mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-19 02:44:17 +03:00
b7b7a7df7e
Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/link-grammar/versions
30 lines
795 B
Nix
30 lines
795 B
Nix
{ stdenv, fetchurl, pkgconfig, python3, sqlite, libedit, zlib }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "${pname}-${version}";
|
|
version = "5.6.1";
|
|
pname = "link-grammar";
|
|
|
|
outputs = [ "bin" "out" "dev" "man" ];
|
|
|
|
src = fetchurl {
|
|
url = "http://www.abisource.com/downloads/${pname}/${version}/${name}.tar.gz";
|
|
sha256 = "1y0zydcr501nlw3r1vh68z6fqj1kjgrc2l8d1hmdv3ipynadqwm2";
|
|
};
|
|
|
|
nativeBuildInputs = [ pkgconfig python3 ];
|
|
buildInputs = [ sqlite libedit zlib ];
|
|
|
|
configureFlags = [
|
|
"--disable-java-bindings"
|
|
];
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "A Grammar Checking library";
|
|
homepage = https://www.abisource.com/projects/link-grammar/;
|
|
license = licenses.lgpl21;
|
|
maintainers = with maintainers; [ jtojnar ];
|
|
platforms = platforms.unix;
|
|
};
|
|
}
|