aws-checksums: add nix as reverse dependency to passthru.tests

This commit is contained in:
Sandro Jäckel 2022-11-11 01:09:05 +01:00
parent fb97c7de2b
commit d76993f48d
No known key found for this signature in database
GPG Key ID: 3AF5A43A3EECC2E5

View File

@ -1,4 +1,4 @@
{ lib, stdenv, fetchFromGitHub, cmake, aws-c-common }:
{ lib, stdenv, fetchFromGitHub, cmake, aws-c-common, nix }:
stdenv.mkDerivation rec {
pname = "aws-checksums";
@ -19,6 +19,10 @@ stdenv.mkDerivation rec {
"-DBUILD_SHARED_LIBS=ON"
];
passthru.tests = {
inherit nix;
};
meta = with lib; {
description = "HW accelerated CRC32c and CRC32";
homepage = "https://github.com/awslabs/aws-checksums";