···1718 outputs = [ "out" "dev" "lib" ];
19000020 # This breaks on Darwin because our cmake hook tries to make a build folder
21 # and the wonderful bazel BUILD file is already there (yay case-insensitivity?)
22 prePatch = "rm BUILD";
000000002324 meta = with stdenv.lib; {
25 inherit (src.meta) homepage;
···1718 outputs = [ "out" "dev" "lib" ];
1920+ doCheck = true;
21+22+ checkTarget = "test";
23+24 # This breaks on Darwin because our cmake hook tries to make a build folder
25 # and the wonderful bazel BUILD file is already there (yay case-insensitivity?)
26 prePatch = "rm BUILD";
27+28+ # Don't bother with "man" output for now,
29+ # it currently only makes the manpages hard to use.
30+ postInstall = ''
31+ mkdir -p $out/share/man/man{1,3}
32+ cp ../docs/*.1 $out/share/man/man1/
33+ cp ../docs/*.3 $out/share/man/man3/
34+ '';
3536 meta = with stdenv.lib; {
37 inherit (src.meta) homepage;