From b7edd6fd304d052e2bdb6dbc6b1e42fb17d39c12 Mon Sep 17 00:00:00 2001 From: figsoda Date: Sun, 30 Jul 2023 11:20:02 -0400 Subject: [PATCH] hwatch: expand platforms --- pkgs/tools/misc/hwatch/default.nix | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/pkgs/tools/misc/hwatch/default.nix b/pkgs/tools/misc/hwatch/default.nix index 59e6d17a240..6e3ad36af16 100644 --- a/pkgs/tools/misc/hwatch/default.nix +++ b/pkgs/tools/misc/hwatch/default.nix @@ -24,19 +24,16 @@ rustPlatform.buildRustPackage rec { passthru.tests.version = testers.testVersion { package = hwatch; - command = "hwatch --version"; - version = version; }; meta = with lib; { homepage = "https://github.com/blacknon/hwatch"; - description= "Modern alternative to the watch command"; + description = "Modern alternative to the watch command"; longDescription = '' A modern alternative to the watch command, records the differences in execution results and can check this differences at after. ''; license = licenses.mit; maintainers = with maintainers; [ hamburger1984 ]; - platforms = platforms.linux; }; }