diff --git a/pkgs/tools/misc/coinlive/default.nix b/pkgs/tools/misc/coinlive/default.nix index 498874ed5be9..a24ff65d45ca 100644 --- a/pkgs/tools/misc/coinlive/default.nix +++ b/pkgs/tools/misc/coinlive/default.nix @@ -6,6 +6,7 @@ pkg-config, rustPlatform, Security, + versionCheckHook, }: rustPlatform.buildRustPackage rec { @@ -31,11 +32,15 @@ rustPlatform.buildRustPackage rec { Security ]; + nativeInstallCheckInputs = [ versionCheckHook ]; + checkFlags = [ # Test requires network access "--skip=utils::test_get_infos" ]; + doInstallCheck = true; + meta = with lib; { description = "Live cryptocurrency prices CLI"; homepage = "https://github.com/mayeranalytics/coinlive";