Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)

mydumper: add changelog to meta

authored by Fabian Affolter and committed by GitHub fdfa7cff c4d32f96

+19 -7
+19 -7
pkgs/tools/backup/mydumper/default.nix
··· 13 let inherit (lib) getDev; in 14 15 stdenv.mkDerivation rec { 16 - version = "0.13.1-1"; 17 pname = "mydumper"; 18 19 src = fetchFromGitHub { 20 owner = "maxbube"; 21 - repo = "mydumper"; 22 - rev = "v${version}"; 23 - sha256 = "sha256-Oknivkyr3wOfjnDccEeFVt7D2l1CkeWgXahsQCtAc0I="; 24 }; 25 26 - nativeBuildInputs = [ cmake pkg-config ]; 27 28 - buildInputs = [ glib zlib pcre libmysqlclient libressl ]; 29 30 - cmakeFlags = [ "-DMYSQL_INCLUDE_DIR=${getDev libmysqlclient}/include/mysql" ]; 31 32 meta = with lib; { 33 description = "High-perfomance MySQL backup tool"; 34 homepage = "https://github.com/maxbube/mydumper"; 35 license = licenses.gpl3Plus; 36 platforms = platforms.linux; 37 maintainers = with maintainers; [ izorkin ];
··· 13 let inherit (lib) getDev; in 14 15 stdenv.mkDerivation rec { 16 pname = "mydumper"; 17 + version = "0.13.1-1"; 18 19 src = fetchFromGitHub { 20 owner = "maxbube"; 21 + repo = "mydumper"; 22 + rev = "refs/tags/v${version}"; 23 + hash = "sha256-Oknivkyr3wOfjnDccEeFVt7D2l1CkeWgXahsQCtAc0I="; 24 }; 25 26 + nativeBuildInputs = [ 27 + cmake 28 + pkg-config 29 + ]; 30 31 + buildInputs = [ 32 + glib 33 + zlib 34 + pcre 35 + libmysqlclient 36 + libressl 37 + ]; 38 39 + cmakeFlags = [ 40 + "-DMYSQL_INCLUDE_DIR=${getDev libmysqlclient}/include/mysql" 41 + ]; 42 43 meta = with lib; { 44 description = "High-perfomance MySQL backup tool"; 45 homepage = "https://github.com/maxbube/mydumper"; 46 + changelog = "https://github.com/mydumper/mydumper/releases/tag/v${version}"; 47 license = licenses.gpl3Plus; 48 platforms = platforms.linux; 49 maintainers = with maintainers; [ izorkin ];