From 68c7d4da1d1fb167535f218d97f64d22872965c1 Mon Sep 17 00:00:00 2001 From: Arnout Engelen Date: Sat, 11 Mar 2023 12:07:29 +0100 Subject: [PATCH] turbo: add version test --- pkgs/tools/misc/turbo/default.nix | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/pkgs/tools/misc/turbo/default.nix b/pkgs/tools/misc/turbo/default.nix index 520a4553b479..38b9b997b6f5 100644 --- a/pkgs/tools/misc/turbo/default.nix +++ b/pkgs/tools/misc/turbo/default.nix @@ -12,6 +12,8 @@ , extra-cmake-modules , fontconfig , go +, testers +, turbo }: let version = "1.8.3"; @@ -82,6 +84,8 @@ rustPlatform.buildRustPackage rec { # Browser tests time out with chromium and google-chrome doCheck = false; + passthru.tests.version = testers.testVersion { package = turbo; }; + meta = with lib; { description = "High-performance build system for JavaScript and TypeScript codebases"; homepage = "https://turbo.build/";