Merge pull request #215845 from risicle/ris-zstd-passthru-tests
zstd: add some key reverse-dependencies to passthru.tests
This commit is contained in:
commit
3ea51a72e4
1 changed files with 17 additions and 0 deletions
|
@ -8,6 +8,15 @@
|
||||||
, buildContrib ? stdenv.hostPlatform == stdenv.buildPlatform
|
, buildContrib ? stdenv.hostPlatform == stdenv.buildPlatform
|
||||||
, doCheck ? stdenv.hostPlatform == stdenv.buildPlatform
|
, doCheck ? stdenv.hostPlatform == stdenv.buildPlatform
|
||||||
, nix-update-script
|
, nix-update-script
|
||||||
|
|
||||||
|
# for passthru.tests
|
||||||
|
, libarchive
|
||||||
|
, rocksdb
|
||||||
|
, arrow-cpp
|
||||||
|
, libzip
|
||||||
|
, curl
|
||||||
|
, python3Packages
|
||||||
|
, haskellPackages
|
||||||
}:
|
}:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
|
@ -91,6 +100,14 @@ stdenv.mkDerivation rec {
|
||||||
|
|
||||||
passthru = {
|
passthru = {
|
||||||
updateScript = nix-update-script { };
|
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; {
|
meta = with lib; {
|
||||||
|
|
Loading…
Reference in a new issue