folly: add some key reverse-dependencies to passthru.tests
This commit is contained in:
parent
eab8604428
commit
e70589fe0f
1 changed files with 11 additions and 2 deletions
|
@ -18,6 +18,10 @@
|
||||||
, zstd
|
, zstd
|
||||||
, jemalloc
|
, jemalloc
|
||||||
, follyMobile ? false
|
, follyMobile ? false
|
||||||
|
|
||||||
|
# for passthru.tests
|
||||||
|
, python3
|
||||||
|
, watchman
|
||||||
}:
|
}:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
|
@ -80,11 +84,16 @@ stdenv.mkDerivation rec {
|
||||||
--replace '$'{_IMPORT_PREFIX}/lib/ $out/lib/
|
--replace '$'{_IMPORT_PREFIX}/lib/ $out/lib/
|
||||||
'';
|
'';
|
||||||
|
|
||||||
|
passthru = {
|
||||||
# folly-config.cmake, will `find_package` these, thus there should be
|
# folly-config.cmake, will `find_package` these, thus there should be
|
||||||
# a way to ensure abi compatibility.
|
# a way to ensure abi compatibility.
|
||||||
passthru = {
|
|
||||||
inherit boost;
|
inherit boost;
|
||||||
fmt = fmt_8;
|
fmt = fmt_8;
|
||||||
|
|
||||||
|
tests = {
|
||||||
|
inherit watchman;
|
||||||
|
inherit (python3.pkgs) django pywatchman;
|
||||||
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
|
|
Loading…
Reference in a new issue