cargo-nextest: add update script

This commit is contained in:
Emily
2024-09-04 21:35:15 +01:00
parent cc4f98be0d
commit c3304ee49d
@@ -1,4 +1,4 @@
{ lib, rustPlatform, fetchFromGitHub }:
{ lib, rustPlatform, fetchFromGitHub, nix-update-script }:
rustPlatform.buildRustPackage rec {
pname = "cargo-nextest";
@@ -16,6 +16,7 @@ rustPlatform.buildRustPackage rec {
cargoBuildFlags = [ "-p" "cargo-nextest" ];
cargoTestFlags = [ "-p" "cargo-nextest" ];
passthru.updateScript = nix-update-script { };
meta = with lib; {
description = "Next-generation test runner for Rust projects";