about summary refs log tree commit diff
path: root/users/grfn/pkgs/cargo-nextest.nix
blob: dbf3bd7eef192bf06b5ed7fdf85e55e9500fad1b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
{ pkgs, ... }:

with pkgs;

rustPlatform.buildRustPackage rec {
  pname = "cargo-nextest";
  version = "0.9.36";

  src = fetchFromGitHub {
    owner = "nextest-rs";
    repo = "nextest";
    rev = "cargo-nextest-${version}";
    sha256 = "1g40r38bqmdhc0dy07pj27vkc64d3fw6v5z2vwn82xld2h9dg7w2";
  };

  cargoSha256 = "1g862azgkn3xk3v3chs8hv1b1prj1pq2vfzbhcx6ir9l00kv6gcv";

  cargoTestFlags = [
    "--"
    "--skip"
    "tests_integration::test_relocated_run"
    "--skip"
    "tests_integration::test_run"
    "--skip"
    "tests_integration::test_run_after_build"
  ];
}