Merge pull request #239178 from helsinki-systems/upd/galera

mariadb-galera: 26.4.14 -> 26.4.15
This commit is contained in:
Nick Cao 2023-06-22 23:20:22 +08:00 committed by GitHub
commit 105612814c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,16 +1,17 @@
{ lib, stdenv, fetchFromGitHub, buildEnv
, asio, boost, check, openssl, cmake
, nixosTests
}:
stdenv.mkDerivation rec {
pname = "mariadb-galera";
version = "26.4.14";
version = "26.4.15";
src = fetchFromGitHub {
owner = "codership";
repo = "galera";
rev = "release_${version}";
hash = "sha256-oRDzRylZEqmhtE70XWmwqt6eJaJyGgySjdxouznLP1g=";
hash = "sha256-9CjxtNvsj2qM65u+R0pJZVwEaTdqtqURrfOGbT+/5ks=";
fetchSubmodules = true;
};
@ -29,6 +30,10 @@ stdenv.mkDerivation rec {
ln -s $out/lib/libgalera_smm.so $out/lib/galera/libgalera_smm.so
'';
passthru.tests = {
inherit (nixosTests) mariadb-galera;
};
meta = with lib; {
description = "Galera 3 wsrep provider library";
homepage = "https://galeracluster.com/";