zstd: add some key reverse-dependencies to passthru.tests

This commit is contained in:
Robert Scott 2023-02-11 00:09:44 +00:00
parent 6fe0b23086
commit e186a328e4

View file

@ -8,6 +8,15 @@
, buildContrib ? stdenv.hostPlatform == stdenv.buildPlatform
, doCheck ? stdenv.hostPlatform == stdenv.buildPlatform
, nix-update-script
# for passthru.tests
, libarchive
, rocksdb
, arrow-cpp
, libzip
, curl
, python3Packages
, haskellPackages
}:
stdenv.mkDerivation rec {
@ -91,6 +100,14 @@ stdenv.mkDerivation rec {
passthru = {
updateScript = nix-update-script { };
tests = {
inherit libarchive rocksdb arrow-cpp;
libzip = libzip.override { withZstd = true; };
curl = curl.override { zstdSupport = true; };
python-zstd = python3Packages.zstd;
haskell-zstd = haskellPackages.zstd;
haskell-hs-zstd = haskellPackages.hs-zstd;
};
};
meta = with lib; {