catdoc: fix build on darwin

This commit is contained in:
Mario Rodas 2021-08-15 03:00:00 -05:00
parent d5ae62096e
commit fb5893edba

View file

@ -16,6 +16,12 @@ stdenv.mkDerivation rec {
})
];
# Remove INSTALL file to avoid `make` misinterpreting it as an up-to-date
# target on case-insensitive filesystems e.g. Darwin
preInstall = ''
rm -v INSTALL
'';
configureFlags = [ "--disable-wordview" ];
meta = with lib; {