nixpkgs/pkgs/tools/misc/mysqltuner/default.nix

37 lines
891 B
Nix
Raw Normal View History

{ lib, stdenv, fetchFromGitHub, perl }:
2016-10-12 13:26:53 +00:00
stdenv.mkDerivation rec {
pname = "mysqltuner";
2021-02-06 15:25:30 +00:00
version = "1.7.21";
2016-10-12 13:26:53 +00:00
src = fetchFromGitHub {
owner = "major";
repo = "MySQLTuner-perl";
rev = version;
2021-02-06 15:25:30 +00:00
sha256 = "sha256-Yv1XjD8sZcmGr2SVD6TEElUH7vspJ61WwQwfXLOrao0=";
2016-10-12 13:26:53 +00:00
};
postPatch = ''
substituteInPlace mysqltuner.pl \
--replace '/usr/share' "$out/share"
'';
2016-10-12 13:26:53 +00:00
buildInputs = [ perl ];
installPhase = ''
runHook preInstall
install -Dm0555 mysqltuner.pl $out/bin/mysqltuner
install -Dm0444 -t $out/share/mysqltuner basic_passwords.txt vulnerabilities.csv
runHook postInstall
2016-10-12 13:26:53 +00:00
'';
meta = with lib; {
2016-10-12 13:26:53 +00:00
description = "Make recommendations for increased performance and stability of MariaDB/MySQL";
homepage = "http://mysqltuner.com";
license = licenses.gpl3Plus;
maintainers = with maintainers; [ peterhoeg shamilton ];
2016-10-12 13:26:53 +00:00
};
}