Merge pull request #115424 from siraben/darwin-mass-fix-buildInputs=0

This commit is contained in:
Sandro
2021-03-09 21:14:38 +01:00
committed by GitHub
17 changed files with 45 additions and 28 deletions
+3 -2
View File
@@ -10,7 +10,8 @@ stdenv.mkDerivation {
postPatch = ''
substituteInPlace Makefile \
--replace ginstall install
--replace ginstall install \
--replace gcc '${stdenv.cc.targetPrefix}cc'
'';
makeFlags = [ "BINDIR=$(out)/bin" "MANDIR=$(out)/share/man" ];
@@ -27,6 +28,6 @@ stdenv.mkDerivation {
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.linux;
platforms = lib.platforms.all;
};
}