From a396da7a08ca25580f826549efc8f165be649e9b Mon Sep 17 00:00:00 2001 From: emaryn Date: Mon, 3 Mar 2025 05:25:51 +0800 Subject: [PATCH] termdown: 1.17.0 -> 1.18.0 --- pkgs/applications/misc/termdown/default.nix | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/pkgs/applications/misc/termdown/default.nix b/pkgs/applications/misc/termdown/default.nix index aa20f51e3ae0..5e1ba20b4e82 100644 --- a/pkgs/applications/misc/termdown/default.nix +++ b/pkgs/applications/misc/termdown/default.nix @@ -10,27 +10,27 @@ buildPythonApplication rec { pname = "termdown"; - version = "1.17.0"; + version = "1.18.0"; src = fetchFromGitHub { - rev = version; - sha256 = "1sd9z5n2a4ir35832wgxs68vwav7wxhq39b5h8pq934mp8sl3v2k"; - repo = "termdown"; owner = "trehn"; + repo = "termdown"; + tag = version; + hash = "sha256-Hnk/MOYdbOl14fI0EFbIq7Hmc7TyhcZWGEg2/jmNJ5Y="; }; - propagatedBuildInputs = [ + dependencies = [ python-dateutil click pyfiglet setuptools ]; - meta = with lib; { + meta = { description = "Starts a countdown to or from TIMESPEC"; mainProgram = "termdown"; longDescription = "Countdown timer and stopwatch in your terminal"; homepage = "https://github.com/trehn/termdown"; - license = licenses.gpl3; + license = lib.licenses.gpl3; }; }