Merge pull request #34191 from dtzWill/fix/brotli-misc

brotli: tests, install man pages

authored by Graham Christensen and committed by GitHub b8419d56 9b245b56

+12
+12
pkgs/tools/compression/brotli/default.nix
··· 17 17 18 18 outputs = [ "out" "dev" "lib" ]; 19 19 20 + doCheck = true; 21 + 22 + checkTarget = "test"; 23 + 20 24 # This breaks on Darwin because our cmake hook tries to make a build folder 21 25 # and the wonderful bazel BUILD file is already there (yay case-insensitivity?) 22 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 + ''; 23 35 24 36 meta = with stdenv.lib; { 25 37 inherit (src.meta) homepage;