catdoc: fix build on darwin

launchpad/nixpkgs/master
Mario Rodas 3 years ago
parent d5ae62096e
commit fb5893edba
  1. 6
      pkgs/tools/text/catdoc/default.nix

@ -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; {

Loading…
Cancel
Save