about summary refs log tree commit diff
path: root/pkgs/tools/networking/bore
diff options
context:
space:
mode:
authorfigsoda <figsoda@pm.me>2021-11-15 19:50:50 -0500
committerfigsoda <figsoda@pm.me>2021-11-16 08:11:55 -0500
commit84361e0a989a23acc9a80fa0ef4b66558cdba02f (patch)
treee728f46c67b41369f9976e133840eb45304abaa9 /pkgs/tools/networking/bore
parent478acf788b629118d1272e0da21888cfe6df96fa (diff)
bore: use checkFeatures
Diffstat (limited to 'pkgs/tools/networking/bore')
-rw-r--r--pkgs/tools/networking/bore/default.nix4
1 files changed, 3 insertions, 1 deletions
diff --git a/pkgs/tools/networking/bore/default.nix b/pkgs/tools/networking/bore/default.nix
index b22cdb0c2ae41..cfe78590483fc 100644
--- a/pkgs/tools/networking/bore/default.nix
+++ b/pkgs/tools/networking/bore/default.nix
@@ -15,7 +15,9 @@ rustPlatform.buildRustPackage rec {
   cargoBuildFlags = "-p ${pname}";
 
   # FIXME can’t test --all-targets and --doc in a single invocation
-  cargoTestFlags = "--features std --all-targets --workspace";
+  checkFeatures = [ "std" ];
+
+  cargoTestFlags = [ "--all-targets" "--workspace" ];
 
   nativeBuildInputs = [ installShellFiles ]
     ++ lib.optional stdenv.isDarwin llvmPackages.libclang;