feat(grfn/home): Install some new rust utilities
Change-Id: I9e210a86a037c58aa832b25203b5ac8c27306aa3 Reviewed-on: https://cl.tvl.fyi/c/depot/+/5933 Tested-by: BuildkiteCI Reviewed-by: grfn <grfn@gws.fyi> Autosubmit: grfn <grfn@gws.fyi>
This commit is contained in:
parent
8300d889c5
commit
bdf614ec3d
3 changed files with 66 additions and 2 deletions
27
users/grfn/pkgs/cargo-nextest.nix
Normal file
27
users/grfn/pkgs/cargo-nextest.nix
Normal file
|
|
@ -0,0 +1,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"
|
||||
];
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue