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