From 1ec50ac39efead05c70b65949ebf32ed8070ba50 Mon Sep 17 00:00:00 2001 From: Leon Schuermann Date: Tue, 16 Jun 2020 13:47:34 +0200 Subject: [PATCH] tpm2-tss: extract checkPhase dependencies into checkInputs --- pkgs/development/libraries/tpm2-tss/default.nix | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/pkgs/development/libraries/tpm2-tss/default.nix b/pkgs/development/libraries/tpm2-tss/default.nix index a242484e897..b2595193aad 100644 --- a/pkgs/development/libraries/tpm2-tss/default.nix +++ b/pkgs/development/libraries/tpm2-tss/default.nix @@ -14,13 +14,12 @@ stdenv.mkDerivation rec { nativeBuildInputs = [ doxygen perl pkgconfig - # For unit tests and integration tests. - ibm-sw-tpm2 iproute procps which ]; buildInputs = [ openssl json_c curl - # For unit tests and integration tests. - cmocka uthash + ]; + checkInputs = [ + cmocka uthash ibm-sw-tpm2 iproute procps which ]; enableParallelBuilding = true;