mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 10:16:44 +01:00
27 lines
703 B
Nix
27 lines
703 B
Nix
{ stdenv, fetchFromGitHub, cmake, pkgconfig
|
|
, glib, zlib, pcre, libmysqlclient, libressl }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
version = "0.9.5";
|
|
pname = "mydumper";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "maxbube";
|
|
repo = "mydumper";
|
|
rev = "v${version}";
|
|
sha256 = "0vbz0ri5hm6yzkrcgnaj8px6bf59myr5dbhyy7fd4cv44hr685k6";
|
|
};
|
|
|
|
nativeBuildInputs = [ cmake pkgconfig ];
|
|
|
|
buildInputs = [ glib zlib pcre libmysqlclient libressl ];
|
|
|
|
meta = with stdenv.lib; {
|
|
description = ''High-perfomance MySQL backup tool'';
|
|
homepage = "https://github.com/maxbube/mydumper";
|
|
license = licenses.gpl3;
|
|
platforms = platforms.linux;
|
|
maintainers = with maintainers; [ izorkin ];
|
|
};
|
|
}
|