From c4c95950c5ce51b71228bef31144850064eeb76c Mon Sep 17 00:00:00 2001 From: Mario Rodas Date: Tue, 8 Nov 2022 04:20:00 +0000 Subject: [PATCH] aws-c-common: add nix as reverse dependency to passthru.tests --- pkgs/development/libraries/aws-c-common/default.nix | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/pkgs/development/libraries/aws-c-common/default.nix b/pkgs/development/libraries/aws-c-common/default.nix index c2c2016649c0..235c328da85e 100644 --- a/pkgs/development/libraries/aws-c-common/default.nix +++ b/pkgs/development/libraries/aws-c-common/default.nix @@ -2,7 +2,7 @@ , stdenv , fetchFromGitHub , cmake -, coreutils +, nix }: stdenv.mkDerivation rec { @@ -43,6 +43,10 @@ stdenv.mkDerivation rec { doCheck = true; + passthru.tests = { + inherit nix; + }; + meta = with lib; { description = "AWS SDK for C common core"; homepage = "https://github.com/awslabs/aws-c-common";