link-grammar: 5.8.1 -> 5.9.1
https://github.com/opencog/link-grammar/blob/link-grammar-5.9.1/ChangeLog Remove libz dependency since that has only been used by minisat. Also clean up the expression.
This commit is contained in:
parent
9e94b036a1
commit
86ec321e63
1 changed files with 21 additions and 5 deletions
|
@ -1,20 +1,36 @@
|
|||
{ lib, stdenv, fetchurl, pkg-config, python3, sqlite, libedit, zlib, runCommand, dieHook }:
|
||||
{ lib
|
||||
, stdenv
|
||||
, fetchurl
|
||||
, pkg-config
|
||||
, python3
|
||||
, sqlite
|
||||
, libedit
|
||||
, runCommand
|
||||
, dieHook
|
||||
}:
|
||||
|
||||
let
|
||||
|
||||
link-grammar = stdenv.mkDerivation rec {
|
||||
version = "5.8.1";
|
||||
pname = "link-grammar";
|
||||
version = "5.9.1";
|
||||
|
||||
outputs = [ "bin" "out" "dev" "man" ];
|
||||
|
||||
src = fetchurl {
|
||||
url = "http://www.abisource.com/downloads/${pname}/${version}/${pname}-${version}.tar.gz";
|
||||
sha256 = "sha256-EcT/VR+lFpJX2sxXUIDGOwdceQ7awpmEqUZBoJk7UFs=";
|
||||
sha256 = "sha256-4D/rqoIGlvR+q7Az8E1xPYSQQMJMRVeRM9HQIbjssLo=";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [ pkg-config python3 ];
|
||||
buildInputs = [ sqlite libedit zlib ];
|
||||
nativeBuildInputs = [
|
||||
pkg-config
|
||||
python3
|
||||
];
|
||||
|
||||
buildInputs = [
|
||||
sqlite
|
||||
libedit
|
||||
];
|
||||
|
||||
configureFlags = [
|
||||
"--disable-java-bindings"
|
||||
|
|
Loading…
Reference in a new issue