mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-16 18:37:04 +03:00
mariadb galera: 25.3.23 -> 25.3.24 (#47905)
This commit is contained in:
parent
3281c90060
commit
963dcd935d
@ -1,4 +1,4 @@
|
|||||||
{ stdenv, fetchurl, cmake, pkgconfig, ncurses, zlib, xz, lzo, lz4, bzip2, snappy
|
{ stdenv, fetchurl, fetchFromGitHub, cmake, pkgconfig, ncurses, zlib, xz, lzo, lz4, bzip2, snappy
|
||||||
, libiconv, openssl, pcre, boost, judy, bison, libxml2
|
, libiconv, openssl, pcre, boost, judy, bison, libxml2
|
||||||
, libaio, libevent, jemalloc, cracklib, systemd, numactl, perl
|
, libaio, libevent, jemalloc, cracklib, systemd, numactl, perl
|
||||||
, fixDarwinDylibNames, cctools, CoreServices
|
, fixDarwinDylibNames, cctools, CoreServices
|
||||||
@ -221,11 +221,14 @@ connector-c = stdenv.mkDerivation rec {
|
|||||||
|
|
||||||
galera = stdenv.mkDerivation rec {
|
galera = stdenv.mkDerivation rec {
|
||||||
name = "mariadb-galera-${version}";
|
name = "mariadb-galera-${version}";
|
||||||
version = "25.3.23";
|
version = "25.3.24";
|
||||||
|
|
||||||
src = fetchurl {
|
src = fetchFromGitHub {
|
||||||
url = "https://mirrors.nxthost.com/mariadb/mariadb-10.2.14/galera-${version}/src/galera-${version}.tar.gz";
|
owner = "codership";
|
||||||
sha256 = "11pfc85z29jk0h6g6bmi3hdv4in4yb00xsr2r0qm1b0y7m2wq3ra";
|
repo = "galera";
|
||||||
|
rev = "release_${version}";
|
||||||
|
sha256 = "1yx3rqy7r4w2l3hnrri30hvsa296v8xidi18p5fdzcpmnhnlwjbi";
|
||||||
|
fetchSubmodules = true;
|
||||||
};
|
};
|
||||||
|
|
||||||
buildInputs = [ asio boost check openssl scons ];
|
buildInputs = [ asio boost check openssl scons ];
|
||||||
|
Loading…
Reference in New Issue
Block a user