about summary refs log tree commit diff
path: root/pkgs/tools/misc/barman/default.nix
diff options
context:
space:
mode:
authorFabian Affolter <mail@fabian-affolter.ch>2023-01-27 11:56:35 +0100
committerGitHub <noreply@github.com>2023-01-27 11:56:35 +0100
commit586433bc70ec8ae2540f51f4fe00e654b0645ae5 (patch)
tree46014027ba5895073139b1092c6a319b8b441527 /pkgs/tools/misc/barman/default.nix
parent57daeabfa267c225c5e3de61cc6a6e15eb10b598 (diff)
barman: add cahngelog to meta
Diffstat (limited to 'pkgs/tools/misc/barman/default.nix')
-rw-r--r--pkgs/tools/misc/barman/default.nix8
1 files changed, 5 insertions, 3 deletions
diff --git a/pkgs/tools/misc/barman/default.nix b/pkgs/tools/misc/barman/default.nix
index 58bbf252b4866..bed377663328b 100644
--- a/pkgs/tools/misc/barman/default.nix
+++ b/pkgs/tools/misc/barman/default.nix
@@ -1,8 +1,9 @@
-{ fetchFromGitHub
-, lib
+{ lib
+, fetchFromGitHub
 , stdenv
 , python3Packages
 }:
+
 python3Packages.buildPythonApplication rec {
   pname = "barman";
   version = "3.4.0";
@@ -11,7 +12,7 @@ python3Packages.buildPythonApplication rec {
     owner = "EnterpriseDB";
     repo = pname;
     rev = "refs/tags/release/${version}";
-    sha256 = "sha256-K5y5C+K/fMhgOcSsCMaIgY6ce9UUPszoyumsfNHKjBo=";
+    hash = "sha256-K5y5C+K/fMhgOcSsCMaIgY6ce9UUPszoyumsfNHKjBo=";
   };
 
   patches = [
@@ -45,6 +46,7 @@ python3Packages.buildPythonApplication rec {
   meta = with lib; {
     homepage = "https://www.pgbarman.org/";
     description = "Backup and Recovery Manager for PostgreSQL";
+    changelog = "https://github.com/EnterpriseDB/barman/blob/release/${version}/NEWS";
     maintainers = with maintainers; [ freezeboy ];
     license = licenses.gpl3Plus;
     platforms = platforms.unix;