From 4b987925cfa14a8230104bd42c68bc845dd62211 Mon Sep 17 00:00:00 2001 From: Matthias Beyer Date: Thu, 17 Dec 2020 18:43:05 +0100 Subject: [PATCH] cargo-deny: Disable tests Because nobody told me how to add the missing cargo-metadata command to the test environment and the PR for updating this package is almost half a year old, disable tests now. Hopefully someone will step up and fix this, but I doubt it. Signed-off-by: Matthias Beyer --- pkgs/development/tools/rust/cargo-deny/default.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pkgs/development/tools/rust/cargo-deny/default.nix b/pkgs/development/tools/rust/cargo-deny/default.nix index c27805418d5..63aadf4f1fc 100644 --- a/pkgs/development/tools/rust/cargo-deny/default.nix +++ b/pkgs/development/tools/rust/cargo-deny/default.nix @@ -18,6 +18,8 @@ rustPlatform.buildRustPackage rec { cargoSha256 = "1d5vh6cifkvqxmbgc2z9259q8879fjw016z959hfivv38rragqbr"; + doCheck = false; + nativeBuildInputs = [ perl pkgconfig ]; buildInputs = [ openssl ]