barman: add cahngelog to meta

This commit is contained in:
Fabian Affolter 2023-01-27 11:56:35 +01:00 committed by GitHub
parent 57daeabfa2
commit 586433bc70
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,8 +1,9 @@
{ fetchFromGitHub { lib
, lib , fetchFromGitHub
, stdenv , stdenv
, python3Packages , python3Packages
}: }:
python3Packages.buildPythonApplication rec { python3Packages.buildPythonApplication rec {
pname = "barman"; pname = "barman";
version = "3.4.0"; version = "3.4.0";
@ -11,7 +12,7 @@ python3Packages.buildPythonApplication rec {
owner = "EnterpriseDB"; owner = "EnterpriseDB";
repo = pname; repo = pname;
rev = "refs/tags/release/${version}"; rev = "refs/tags/release/${version}";
sha256 = "sha256-K5y5C+K/fMhgOcSsCMaIgY6ce9UUPszoyumsfNHKjBo="; hash = "sha256-K5y5C+K/fMhgOcSsCMaIgY6ce9UUPszoyumsfNHKjBo=";
}; };
patches = [ patches = [
@ -45,6 +46,7 @@ python3Packages.buildPythonApplication rec {
meta = with lib; { meta = with lib; {
homepage = "https://www.pgbarman.org/"; homepage = "https://www.pgbarman.org/";
description = "Backup and Recovery Manager for PostgreSQL"; description = "Backup and Recovery Manager for PostgreSQL";
changelog = "https://github.com/EnterpriseDB/barman/blob/release/${version}/NEWS";
maintainers = with maintainers; [ freezeboy ]; maintainers = with maintainers; [ freezeboy ];
license = licenses.gpl3Plus; license = licenses.gpl3Plus;
platforms = platforms.unix; platforms = platforms.unix;