mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-25 00:12:56 +00:00
perlModules.PerconaToolkit: add meta.changelog
This commit is contained in:
parent
66e02d3130
commit
245230e640
@ -1,5 +1,12 @@
|
||||
{ lib, fetchFromGitHub, buildPerlPackage, shortenPerlShebang
|
||||
, DBDmysql, DBI, IOSocketSSL, TermReadKey
|
||||
{
|
||||
lib,
|
||||
fetchFromGitHub,
|
||||
buildPerlPackage,
|
||||
shortenPerlShebang,
|
||||
DBDmysql,
|
||||
DBI,
|
||||
IOSocketSSL,
|
||||
TermReadKey,
|
||||
}:
|
||||
|
||||
buildPerlPackage rec {
|
||||
@ -17,7 +24,12 @@ buildPerlPackage rec {
|
||||
|
||||
nativeBuildInputs = [ shortenPerlShebang ];
|
||||
|
||||
buildInputs = [ DBDmysql DBI IOSocketSSL TermReadKey ];
|
||||
buildInputs = [
|
||||
DBDmysql
|
||||
DBI
|
||||
IOSocketSSL
|
||||
TermReadKey
|
||||
];
|
||||
|
||||
postInstall = ''
|
||||
shortenPerlShebang $(grep -l "/bin/env perl" $out/bin/*)
|
||||
@ -26,6 +38,7 @@ buildPerlPackage rec {
|
||||
meta = {
|
||||
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";
|
||||
changelog = "https://docs.percona.com/percona-toolkit/release_notes.html";
|
||||
license = with lib.licenses; [ gpl2Only ];
|
||||
maintainers = with lib.maintainers; [ izorkin ];
|
||||
};
|
||||
|
Loading…
Reference in New Issue
Block a user