From 4f4891ecf95017e51ceb91cc5a037d8e5806a16d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vladim=C3=ADr=20=C4=8Cun=C3=A1t?= Date: Thu, 6 Mar 2025 08:07:29 +0100 Subject: [PATCH] calamares: add .tests This way r-ryantm will warn in their PRs, also CI I think. --- pkgs/tools/misc/calamares/default.nix | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/pkgs/tools/misc/calamares/default.nix b/pkgs/tools/misc/calamares/default.nix index 73c779d9fe33..f71cd8711d66 100644 --- a/pkgs/tools/misc/calamares/default.nix +++ b/pkgs/tools/misc/calamares/default.nix @@ -3,6 +3,8 @@ , qtbase, qtquickcontrols, qtsvg, qttools, qtwebengine, util-linux, tzdata , ckbcomp, xkeyboard_config, mkDerivation , nixos-extensions ? false +# passthru.tests +, calamares-nixos }: mkDerivation rec { @@ -79,6 +81,10 @@ mkDerivation rec { -i CMakeLists.txt ''; + passthru.tests = { + inherit calamares-nixos; + }; + meta = with lib; { description = "Distribution-independent installer framework"; homepage = "https://calamares.io/";