Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)

postgresqlPackages.pgroonga: 3.0.7 -> 3.0.8, use msgpack-c

Diff: https://github.com/pgroonga/pgroonga/compare/3.0.7...3.0.8
Changelog: https://github.com/pgroonga/pgroonga/releases/tag/3.0.8

Nick Cao c74fd7d1 52e5e2b2

+8 -5
+8 -5
pkgs/servers/sql/postgresql/ext/pgroonga.nix
··· 1 - { lib, stdenv, fetchurl, pkg-config, postgresql, msgpack, groonga }: 2 3 stdenv.mkDerivation rec { 4 pname = "pgroonga"; 5 - version = "3.0.7"; 6 7 src = fetchurl { 8 url = "https://packages.groonga.org/source/${pname}/${pname}-${version}.tar.gz"; 9 - hash = "sha256-iF/zh4zDDpAw5fxW1WG8i2bfPt4VYsnYArwOoE/lwgM="; 10 }; 11 12 nativeBuildInputs = [ pkg-config ]; 13 - buildInputs = [ postgresql msgpack groonga ]; 14 15 - makeFlags = [ "HAVE_MSGPACK=1" ]; 16 17 installPhase = '' 18 install -D pgroonga.so -t $out/lib/
··· 1 + { lib, stdenv, fetchurl, pkg-config, postgresql, msgpack-c, groonga }: 2 3 stdenv.mkDerivation rec { 4 pname = "pgroonga"; 5 + version = "3.0.8"; 6 7 src = fetchurl { 8 url = "https://packages.groonga.org/source/${pname}/${pname}-${version}.tar.gz"; 9 + hash = "sha256-2/dInLG8isiSJHJgNyxgbUwMd/mtcUJxcTvSnVpBZ9M="; 10 }; 11 12 nativeBuildInputs = [ pkg-config ]; 13 + buildInputs = [ postgresql msgpack-c groonga ]; 14 15 + makeFlags = [ 16 + "HAVE_MSGPACK=1" 17 + "MSGPACK_PACKAGE_NAME=msgpack-c" 18 + ]; 19 20 installPhase = '' 21 install -D pgroonga.so -t $out/lib/