From 277b020a895ab5f0f3e17fb241e34e421f137788 Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Sat, 13 May 2023 09:26:47 +0200 Subject: [PATCH] python310Packages.icnsutil: : clean-up meta - add changelog to meta --- pkgs/development/python-modules/icnsutil/default.nix | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/pkgs/development/python-modules/icnsutil/default.nix b/pkgs/development/python-modules/icnsutil/default.nix index 087aeafbd083..2365bab42e65 100644 --- a/pkgs/development/python-modules/icnsutil/default.nix +++ b/pkgs/development/python-modules/icnsutil/default.nix @@ -22,10 +22,11 @@ buildPythonPackage rec { ${python.interpreter} tests/test_cli.py ''; - meta = { + meta = with lib; { + description = "Create and extract .icns files"; homepage = "https://github.com/relikd/icnsutil"; - description = "Create and extract .icns files."; - license = lib.licenses.mit; - maintainers = [ lib.maintainers.reckenrode ]; + changelog = "https://github.com/relikd/icnsutil/releases/tag/v${version}"; + license = licenses.mit; + maintainers = with maintainers; [ reckenrode ]; }; }