Merge pull request #270794 from emilytrau/rman-clang

rman: fix clang build
This commit is contained in:
Weijia Wang 2023-11-30 03:31:23 +01:00 committed by GitHub
commit 07657be93d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -24,11 +24,14 @@ stdenv.mkDerivation rec {
hardeningDisable = [ "format" ];
env.NIX_CFLAGS_COMPILE = lib.optionalString stdenv.cc.isClang "-Wno-error=incompatible-function-pointer-types";
doCheck = false; # "check" target is probably meant to do "installcheck" or something
meta = {
description = "Parse formatted man pages and man page source from most flavors of UNIX and converts them to HTML, ASCII, TkMan, DocBook, and other formats";
license = "artistic";
platforms = lib.platforms.all;
mainProgram = "rman";
};
}