Merge pull request #195245 from ncfavier/weechat-docs

This commit is contained in:
Martin Weinelt 2022-10-13 23:11:25 +02:00 committed by GitHub
commit 5c51f3d548
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 5 additions and 1 deletions

View file

@ -50,7 +50,7 @@ let
cmakeFlags = with lib; [
"-DENABLE_MAN=ON"
"-DENABLE_DOC=OFF" # TODO(@ncfavier): Documentation fails to build, was deactivated to push through security update
"-DENABLE_DOC=ON"
"-DENABLE_TESTS=${if enableTests then "ON" else "OFF"}"
]
++ optionals stdenv.isDarwin ["-DICONV_LIBRARY=${libiconv}/lib/libiconv.dylib"]

View file

@ -545,6 +545,10 @@ in
buildInputs = [ openssl ];
};
"pygments.rb" = attrs: {
buildInputs = [ python3 ];
};
rack = attrs: {
meta.mainProgram = "rackup";
};