blob: 6e278ad9dbfba3fd549dca7aae787f0df375b7a9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
source common.sh
set -o pipefail
if [[ $BUILD_SHARED_LIBS != 1 ]]; then
echo "plugins are not supported"
exit 99
fi
res=$(nix --option setting-set true --option plugin-files $PWD/plugins/libplugintest* eval --expr builtins.anotherNull)
[ "$res"x = "nullx" ]
|