Merge branch 'master' into staging

Hydra: ?compare=1429281
This commit is contained in:
Vladimír Čunát
2018-01-27 09:14:22 +01:00
108 changed files with 9892 additions and 2428 deletions

View File

@@ -17,10 +17,22 @@ stdenv.mkDerivation rec {
outputs = [ "out" "dev" "lib" ];
doCheck = true;
checkTarget = "test";
# This breaks on Darwin because our cmake hook tries to make a build folder
# and the wonderful bazel BUILD file is already there (yay case-insensitivity?)
prePatch = "rm BUILD";
# Don't bother with "man" output for now,
# it currently only makes the manpages hard to use.
postInstall = ''
mkdir -p $out/share/man/man{1,3}
cp ../docs/*.1 $out/share/man/man1/
cp ../docs/*.3 $out/share/man/man3/
'';
meta = with stdenv.lib; {
inherit (src.meta) homepage;