Merge pull request #246154 from r-ryantm/auto-update/proxysql
proxysql: 2.5.3 -> 2.5.4
This commit is contained in:
commit
d9d6418a20
1 changed files with 12 additions and 12 deletions
|
@ -31,15 +31,15 @@
|
||||||
, texinfo
|
, texinfo
|
||||||
}:
|
}:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation (finalAttrs: {
|
||||||
pname = "proxysql";
|
pname = "proxysql";
|
||||||
version = "2.5.3";
|
version = "2.5.4";
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "sysown";
|
owner = "sysown";
|
||||||
repo = pname;
|
repo = "proxysql";
|
||||||
rev = version;
|
rev = finalAttrs.version;
|
||||||
hash = "sha256-D/AUjndpu4QJmlgLBXRqMj9gsHYitEYhHVMQzoab1ik=";
|
hash = "sha256-HFhfAWyDB20t+c4s9NlVwdANrFobVyr+vnmZqx+X20Q=";
|
||||||
};
|
};
|
||||||
|
|
||||||
patches = [
|
patches = [
|
||||||
|
@ -69,7 +69,7 @@ stdenv.mkDerivation rec {
|
||||||
|
|
||||||
enableParallelBuilding = true;
|
enableParallelBuilding = true;
|
||||||
|
|
||||||
GIT_VERSION = version;
|
GIT_VERSION = finalAttrs.version;
|
||||||
|
|
||||||
dontConfigure = true;
|
dontConfigure = true;
|
||||||
|
|
||||||
|
@ -165,12 +165,12 @@ stdenv.mkDerivation rec {
|
||||||
sed -i s_/usr/bin/proxysql_$out/bin/proxysql_ $out/lib/systemd/system/*.service
|
sed -i s_/usr/bin/proxysql_$out/bin/proxysql_ $out/lib/systemd/system/*.service
|
||||||
'';
|
'';
|
||||||
|
|
||||||
meta = with lib; {
|
meta = {
|
||||||
homepage = "https://proxysql.com/";
|
|
||||||
broken = stdenv.isDarwin;
|
broken = stdenv.isDarwin;
|
||||||
description = "High-performance MySQL proxy";
|
description = "High-performance MySQL proxy";
|
||||||
license = with licenses; [ gpl3Only ];
|
homepage = "https://proxysql.com/";
|
||||||
maintainers = with maintainers; [ ajs124 ];
|
license = with lib.licenses; [ gpl3Only ];
|
||||||
platforms = platforms.unix;
|
maintainers = with lib.maintainers; [ ajs124 ];
|
||||||
|
platforms = lib.platforms.unix;
|
||||||
};
|
};
|
||||||
}
|
})
|
||||||
|
|
Loading…
Reference in a new issue