Merge pull request #147659 from marsam/update-pgroonga
postgresqlPackages.pgroonga: 2.3.2 -> 2.3.4
This commit is contained in:
commit
3f03bdbceb
2 changed files with 7 additions and 7 deletions
|
@ -1,21 +1,21 @@
|
|||
{ lib, stdenv, fetchurl, mecab, kytea, libedit, pkg-config
|
||||
, suggestSupport ? false, zeromq, libevent, msgpack
|
||||
, suggestSupport ? false, zeromq, libevent, msgpack, openssl
|
||||
, lz4Support ? false, lz4
|
||||
, zlibSupport ? false, zlib
|
||||
, zlibSupport ? true, zlib
|
||||
}:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
|
||||
pname = "groonga";
|
||||
version = "11.0.5";
|
||||
version = "11.0.9";
|
||||
|
||||
src = fetchurl {
|
||||
url = "https://packages.groonga.org/source/groonga/${pname}-${version}.tar.gz";
|
||||
sha256 = "sha256-oBABhMKLezjPeHkWfqesy+ze+CPnWfmS17vCKC7fWEU=";
|
||||
sha256 = "sha256-yE/Ok0QNY9+a4vfNJWZjR4W8E/i+lw7T85X2+oOw8m4=";
|
||||
};
|
||||
|
||||
buildInputs = with lib;
|
||||
[ pkg-config mecab kytea libedit ]
|
||||
[ pkg-config mecab kytea libedit openssl ]
|
||||
++ optional lz4Support lz4
|
||||
++ optional zlibSupport zlib
|
||||
++ optionals suggestSupport [ zeromq libevent msgpack ];
|
||||
|
|
|
@ -2,11 +2,11 @@
|
|||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "pgroonga";
|
||||
version = "2.3.2";
|
||||
version = "2.3.4";
|
||||
|
||||
src = fetchurl {
|
||||
url = "https://packages.groonga.org/source/${pname}/${pname}-${version}.tar.gz";
|
||||
sha256 = "10rj35xxcfg10nvq3zqxm25hfb3hw58z4dda1b4hh8ibyz2489vy";
|
||||
sha256 = "sha256-XE669KfHEyY5TghMUC0GcIqdPTsdAs04pA/t84k+i2E=";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [ pkg-config ];
|
||||
|
|
Loading…
Reference in a new issue