groonga: 14.0.6 -> 15.0.4

emaryn 2a2d2fc7 81229d11

+12 -15
+4 -6
pkgs/by-name/gr/groonga/do-not-use-vendored-libraries.patch
··· 2 3 --- a/vendor/CMakeLists.txt 4 +++ b/vendor/CMakeLists.txt 5 - @@ -14,10 +14,7 @@ 6 - # License along with this library; if not, write to the Free Software 7 - # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA 8 - 9 - add_subdirectory(onigmo) 10 -add_subdirectory(mruby) 11 -add_subdirectory(mecab) 12 - -add_subdirectory(message_pack) 13 if(GRN_WITH_MRUBY) 14 add_subdirectory(groonga-log) 15 endif()
··· 2 3 --- a/vendor/CMakeLists.txt 4 +++ b/vendor/CMakeLists.txt 5 + @@ -18,8 +18,6 @@ 6 + if(GRN_WITH_BUNDLED_ONIGMO) 7 + add_subdirectory(onigmo) 8 + endif() 9 -add_subdirectory(mruby) 10 -add_subdirectory(mecab) 11 if(GRN_WITH_MRUBY) 12 add_subdirectory(groonga-log) 13 endif()
+2 -2
pkgs/by-name/gr/groonga/fix-cmake-install-path.patch
··· 2 3 --- a/CMakeLists.txt 4 +++ b/CMakeLists.txt 5 - @@ -1141,11 +1141,11 @@ 6 - 7 set(prefix "${CMAKE_INSTALL_PREFIX}") 8 set(exec_prefix "\${prefix}") 9 -set(bindir "\${exec_prefix}/${CMAKE_INSTALL_BINDIR}")
··· 2 3 --- a/CMakeLists.txt 4 +++ b/CMakeLists.txt 5 + @@ -1879,11 +1879,11 @@ 6 + 7 set(prefix "${CMAKE_INSTALL_PREFIX}") 8 set(exec_prefix "\${prefix}") 9 -set(bindir "\${exec_prefix}/${CMAKE_INSTALL_BINDIR}")
+6 -7
pkgs/by-name/gr/groonga/package.nix
··· 15 suggestSupport ? false, 16 zeromq, 17 libevent, 18 - openssl, 19 lz4Support ? false, 20 lz4, 21 zlibSupport ? true, ··· 24 25 stdenv.mkDerivation (finalAttrs: { 26 pname = "groonga"; 27 - version = "14.0.6"; 28 29 src = fetchurl { 30 url = "https://packages.groonga.org/source/groonga/groonga-${finalAttrs.version}.tar.gz"; 31 - hash = "sha256-1caTQAycvpG2PgtbxIn58HrxvWjxKgiczRSC72nWzGw="; 32 }; 33 34 patches = [ ··· 74 }; 75 }; 76 77 - meta = with lib; { 78 homepage = "https://groonga.org/"; 79 description = "Open-source fulltext search engine and column store"; 80 - license = licenses.lgpl21; 81 - maintainers = [ maintainers.ericsagnes ]; 82 - platforms = platforms.all; 83 longDescription = '' 84 Groonga is an open-source fulltext search engine and column store. 85 It lets you write high-performance applications that requires fulltext search.
··· 15 suggestSupport ? false, 16 zeromq, 17 libevent, 18 lz4Support ? false, 19 lz4, 20 zlibSupport ? true, ··· 23 24 stdenv.mkDerivation (finalAttrs: { 25 pname = "groonga"; 26 + version = "15.0.4"; 27 28 src = fetchurl { 29 url = "https://packages.groonga.org/source/groonga/groonga-${finalAttrs.version}.tar.gz"; 30 + hash = "sha256-ESPUEBpV6hg8KQeSzjklPgf4R0DlYdpwxp9M6YdTV/Q="; 31 }; 32 33 patches = [ ··· 73 }; 74 }; 75 76 + meta = { 77 homepage = "https://groonga.org/"; 78 description = "Open-source fulltext search engine and column store"; 79 + license = lib.licenses.lgpl21; 80 + maintainers = [ lib.maintainers.ericsagnes ]; 81 + platforms = lib.platforms.all; 82 longDescription = '' 83 Groonga is an open-source fulltext search engine and column store. 84 It lets you write high-performance applications that requires fulltext search.