aboutsummaryrefslogtreecommitdiff
path: root/nixpkgs/pkgs/development/perl-modules/Percona-Toolkit/default.nix
blob: b2c5437e38054a2b4bf0a105868ff59ab5bd76fc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
{ stdenv, fetchFromGitHub, buildPerlPackage, shortenPerlShebang
, DBDmysql, DBI, IOSocketSSL, TermReadKey
}:

buildPerlPackage rec {
  pname = "Percona-Toolkit";
  version = "3.2.0";

  src = fetchFromGitHub {
    owner = "percona";
    repo = "percona-toolkit";
    rev = "v${version}";
    sha256 = "084ldpskvlfm32lfss5qqzm5y9b8hf029aa4i5pcnzgb53xaxkqx";
  };

  outputs = [ "out" ];

  nativeBuildInputs = [ shortenPerlShebang ];

  buildInputs = [ DBDmysql DBI IOSocketSSL TermReadKey ];

  postInstall = ''
    shortenPerlShebang $(grep -l "/bin/env perl" $out/bin/*)
  '';

  meta = with stdenv.lib; {
    description = ''Collection of advanced command-line tools to perform a variety of MySQL and system tasks.'';
    homepage = "https://www.percona.com/software/database-tools/percona-toolkit";
    license = with licenses; [ gpl2 ];
    maintainers = with maintainers; [ izorkin ];
  };
}