Merge pull request #215845 from risicle/ris-zstd-passthru-tests

zstd: add some key reverse-dependencies to passthru.tests
This commit is contained in:
Martin Weinelt 2023-02-13 11:06:25 +00:00 committed by GitHub
commit 3ea51a72e4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

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; {