···17171818 outputs = [ "out" "dev" "lib" ];
19192020+ doCheck = true;
2121+2222+ checkTarget = "test";
2323+2024 # This breaks on Darwin because our cmake hook tries to make a build folder
2125 # and the wonderful bazel BUILD file is already there (yay case-insensitivity?)
2226 prePatch = "rm BUILD";
2727+2828+ # Don't bother with "man" output for now,
2929+ # it currently only makes the manpages hard to use.
3030+ postInstall = ''
3131+ mkdir -p $out/share/man/man{1,3}
3232+ cp ../docs/*.1 $out/share/man/man1/
3333+ cp ../docs/*.3 $out/share/man/man3/
3434+ '';
23352436 meta = with stdenv.lib; {
2537 inherit (src.meta) homepage;