lol

Merge pull request #22081 from ericsagnes/pkg-update/groonga

groonga: 6.1.1 -> 6.1.5

authored by

Arseniy Seroka and committed by
GitHub
303a5a4e 4f7fe270

+16 -20
+16 -20
pkgs/servers/search/groonga/default.nix
··· 1 1 { stdenv, fetchurl, mecab, kytea, libedit, pkgconfig 2 2 , suggestSupport ? false, zeromq, libevent, libmsgpack 3 - , lz4Support ? false, lz4 3 + , lz4Support ? false, lz4 4 4 , zlibSupport ? false, zlib 5 5 }: 6 6 7 7 stdenv.mkDerivation rec { 8 8 9 9 name = "groonga-${version}"; 10 - version = "6.1.1"; 10 + version = "6.1.5"; 11 11 12 12 src = fetchurl { 13 13 url = "http://packages.groonga.org/source/groonga/${name}.tar.gz"; 14 - sha256 = "03h65gycy0j2q4n5h62x3sw76ibdywdvmiciys5a7ppxb2mncabz"; 14 + sha256 = "0phh4qp7ky5rw8xgxv3gjzw2cadkjl604xrdyxxbpd30i354sh5x"; 15 15 }; 16 16 17 - buildInputs = with stdenv.lib; [ pkgconfig mecab kytea libedit ] ++ 18 - optional lz4Support lz4 ++ 19 - optional zlibSupport zlib ++ 20 - optional suggestSupport [ zeromq libevent libmsgpack ]; 21 - 22 - configureFlags = with stdenv.lib; '' 23 - ${optionalString zlibSupport "--with-zlib"} 24 - ${optionalString lz4Support "--with-lz4"} 25 - ''; 17 + buildInputs = with stdenv.lib; 18 + [ pkgconfig mecab kytea libedit ] 19 + ++ optional lz4Support lz4 20 + ++ optional zlibSupport zlib 21 + ++ optionals suggestSupport [ zeromq libevent libmsgpack ]; 26 22 27 - doInstallCheck = true; 23 + configureFlags = with stdenv.lib; 24 + optional zlibSupport "--with-zlib" 25 + ++ optional lz4Support "--with-lz4"; 28 26 27 + doInstallCheck = true; 29 28 installCheckPhase = "$out/bin/groonga --version"; 30 29 31 30 meta = with stdenv.lib; { 32 - homepage = http://groonga.org/; 31 + homepage = http://groonga.org/; 33 32 description = "An open-source fulltext search engine and column store"; 34 - 33 + license = licenses.lgpl21; 34 + maintainers = [ maintainers.ericsagnes ]; 35 + platforms = platforms.linux; 35 36 longDescription = '' 36 37 Groonga is an open-source fulltext search engine and column store. 37 38 It lets you write high-performance applications that requires fulltext search. 38 39 ''; 39 - 40 - license = licenses.lgpl21; 41 - 42 - maintainers = [ maintainers.ericsagnes ]; 43 - platforms = platforms.linux; 44 40 }; 45 41 46 42 }