perlPackages.PerconaToolkit: 3.0.12 -> 3.2.0
This commit is contained in:
parent
50da2471c2
commit
3fef7f3e54
1 changed files with 17 additions and 9 deletions
|
@ -1,24 +1,32 @@
|
||||||
{ lib, fetchFromGitHub, buildPerlPackage, DBDmysql, DBI, IOSocketSSL, TermReadKey, shortenPerlShebang }:
|
{ stdenv, fetchFromGitHub, buildPerlPackage, shortenPerlShebang
|
||||||
|
, DBDmysql, DBI, IOSocketSSL, TermReadKey
|
||||||
|
}:
|
||||||
|
|
||||||
buildPerlPackage {
|
buildPerlPackage rec {
|
||||||
pname = "Percona-Toolkit";
|
pname = "Percona-Toolkit";
|
||||||
version = "3.0.12";
|
version = "3.2.0";
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "percona";
|
owner = "percona";
|
||||||
repo = "percona-toolkit";
|
repo = "percona-toolkit";
|
||||||
rev = "3.0.12";
|
rev = "v${version}";
|
||||||
sha256 = "0xk4h4dzl80kf97lbx0nznx9ajrb6kkg7k3iwca3rj6f3rqggv9y";
|
sha256 = "084ldpskvlfm32lfss5qqzm5y9b8hf029aa4i5pcnzgb53xaxkqx";
|
||||||
};
|
};
|
||||||
|
|
||||||
outputs = [ "out" ];
|
outputs = [ "out" ];
|
||||||
|
|
||||||
nativeBuildInputs = [ shortenPerlShebang ];
|
nativeBuildInputs = [ shortenPerlShebang ];
|
||||||
|
|
||||||
buildInputs = [ DBDmysql DBI IOSocketSSL TermReadKey ];
|
buildInputs = [ DBDmysql DBI IOSocketSSL TermReadKey ];
|
||||||
|
|
||||||
postInstall = ''
|
postInstall = ''
|
||||||
shortenPerlShebang $(grep -l "/bin/env perl" $out/bin/*)
|
shortenPerlShebang $(grep -l "/bin/env perl" $out/bin/*)
|
||||||
'';
|
'';
|
||||||
meta = {
|
|
||||||
|
meta = with stdenv.lib; {
|
||||||
description = ''Collection of advanced command-line tools to perform a variety of MySQL and system tasks.'';
|
description = ''Collection of advanced command-line tools to perform a variety of MySQL and system tasks.'';
|
||||||
homepage = "http://www.percona.com/software/percona-toolkit";
|
homepage = "https://www.percona.com/software/database-tools/percona-toolkit";
|
||||||
license = with lib.licenses; [ gpl2 ];
|
license = with licenses; [ gpl2 ];
|
||||||
maintainers = with lib.maintainers; [ izorkin ];
|
maintainers = with maintainers; [ izorkin ];
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue