about summary refs log tree commit diff
path: root/pkgs/development/libraries/aws-crt-cpp
diff options
context:
space:
mode:
authorSandro Jäckel <sandro.jaeckel@gmail.com>2022-11-11 01:09:09 +0100
committerSandro Jäckel <sandro.jaeckel@gmail.com>2022-11-11 01:09:09 +0100
commit4baff2352dbc03674b770657bfce164ea22d2b61 (patch)
treed12b92d5d5aa1cda2dcf46d95742063c056eb22a /pkgs/development/libraries/aws-crt-cpp
parentd76993f48db9142f7647824b64b6274d110410b6 (diff)
aws-crt-cpp: add nix as reverse dependency to passthru.tests
Diffstat (limited to 'pkgs/development/libraries/aws-crt-cpp')
-rw-r--r--pkgs/development/libraries/aws-crt-cpp/default.nix5
1 files changed, 5 insertions, 0 deletions
diff --git a/pkgs/development/libraries/aws-crt-cpp/default.nix b/pkgs/development/libraries/aws-crt-cpp/default.nix
index c7eac8474cb4c..3d4b31ad57d1b 100644
--- a/pkgs/development/libraries/aws-crt-cpp/default.nix
+++ b/pkgs/development/libraries/aws-crt-cpp/default.nix
@@ -12,6 +12,7 @@
 , aws-checksums
 , cmake
 , s2n-tls
+, nix
 }:
 
 stdenv.mkDerivation rec {
@@ -65,6 +66,10 @@ stdenv.mkDerivation rec {
     moveToOutput lib/aws-crt-cpp/cmake "$dev"
   '';
 
+  passthru.tests = {
+    inherit nix;
+  };
+
   meta = with lib; {
     description = "C++ wrapper around the aws-c-* libraries";
     homepage = "https://github.com/awslabs/aws-crt-cpp";