3
0
Fork 0
forked from mirrors/nixpkgs

caf: enable checks

This commit is contained in:
Tobias Mayer 2019-08-30 15:48:51 +02:00
parent afcf63bc74
commit f5d99970d0

View file

@ -19,6 +19,12 @@ stdenv.mkDerivation rec {
"-DCAF_NO_EXAMPLES:BOOL=TRUE"
];
doCheck = true;
checkTarget = "test";
preCheck = ''
export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:$PWD/lib
'';
meta = with stdenv.lib; {
description = "An open source implementation of the actor model in C++";
homepage = http://actor-framework.org/;