2018-02-08 16:26:18 +00:00
|
|
|
source common.sh
|
|
|
|
|
|
|
|
set -o pipefail
|
|
|
|
|
2022-06-22 20:41:14 +00:00
|
|
|
if [[ $BUILD_SHARED_LIBS != 1 ]]; then
|
|
|
|
echo "plugins are not supported"
|
|
|
|
exit 99
|
|
|
|
fi
|
|
|
|
|
2021-01-28 14:37:43 +00:00
|
|
|
res=$(nix --option setting-set true --option plugin-files $PWD/plugins/libplugintest* eval --expr builtins.anotherNull)
|
2018-02-08 16:26:18 +00:00
|
|
|
|
|
|
|
[ "$res"x = "nullx" ]
|