antiword: supports darwin

This commit is contained in:
Matthew Bauer 2017-04-20 16:39:56 -05:00
parent 1d84a914f5
commit 8d26be2ae6
No known key found for this signature in database
GPG Key ID: E04D0AD9469141C3

View File

@ -13,6 +13,7 @@ stdenv.mkDerivation {
prePatch = ''
sed -i -e "s|/usr/local/bin|$out/bin|g" -e "s|/usr/share|$out/share|g" Makefile antiword.h
substituteInPlace Makefile --replace "gcc" "cc"
'';
patches = [ ./10_fix_buffer_overflow_wordole_c.patch ];
@ -25,6 +26,6 @@ stdenv.mkDerivation {
license = stdenv.lib.licenses.gpl2;
maintainers = [ stdenv.lib.maintainers.peti ];
platforms = stdenv.lib.platforms.linux;
platforms = with stdenv.lib.platforms; linux ++ darwin;
};
}