about summary refs log tree commit diff
path: root/users/grfn/pkgs/cargo-nextest.nix
blob: 5339a6e60048cb30478a2c9bc8bf32938012d5ea (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.14";

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

  cargoSha256 = "0rcsh573qryllgc199ah2dbrn1xcp215q2xkjb3f4ps757m7scnm";

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