From 699492aa7e809533d2d435adf0d59bd18e40f1ad Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Sun, 21 May 2023 10:43:29 +0200 Subject: [PATCH] elasticsearch-curator: add changelog to meta --- pkgs/tools/admin/elasticsearch-curator/default.nix | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/pkgs/tools/admin/elasticsearch-curator/default.nix b/pkgs/tools/admin/elasticsearch-curator/default.nix index b33aa22dd304..5df08e4f6b4d 100644 --- a/pkgs/tools/admin/elasticsearch-curator/default.nix +++ b/pkgs/tools/admin/elasticsearch-curator/default.nix @@ -1,4 +1,7 @@ -{ lib, fetchFromGitHub, python3 }: +{ lib +, fetchFromGitHub +, python3 +}: let python = python3.override { @@ -16,7 +19,7 @@ let }; }; in python.pkgs.buildPythonApplication rec { - pname = "elasticsearch-curator"; + pname = "elasticsearch-curator"; version = "5.8.4"; format = "setuptools"; @@ -24,7 +27,7 @@ in python.pkgs.buildPythonApplication rec { src = fetchFromGitHub { owner = "elastic"; repo = "curator"; - rev = "v${version}"; + rev = "refs/tags/v${version}"; hash = "sha256-wSfd52jebUkgF5xhjcoUjI7j46eJF33pVb4Wrybq44g="; }; @@ -80,6 +83,7 @@ in python.pkgs.buildPythonApplication rec { * Perform various actions on the items which remain in the actionable list. ''; + changelog = "https://github.com/elastic/curator/releases/tag/v${version}"; maintainers = with maintainers; [ basvandijk ]; }; }