2021-01-15 05:42:41 +00:00
|
|
|
{ lib, fetchurl, stdenv }:
|
2011-08-31 12:55:51 +01:00
|
|
|
|
2021-11-07 20:29:51 +00:00
|
|
|
stdenv.mkDerivation rec{
|
|
|
|
pname = "antiword";
|
|
|
|
version = "0.37";
|
2011-08-31 12:55:51 +01:00
|
|
|
|
|
|
|
src = fetchurl {
|
2021-11-07 20:29:51 +00:00
|
|
|
url = "http://www.winfield.demon.nl/linux/antiword-${version}.tar.gz";
|
2011-08-31 12:55:51 +01:00
|
|
|
sha256 = "1b7mi1l20jhj09kyh0bq14qzz8vdhhyf35gzwsq43mn6rc7h0b4f";
|
|
|
|
};
|
|
|
|
|
2016-09-17 03:49:23 +01:00
|
|
|
prePatch = ''
|
2011-08-31 13:06:27 +01:00
|
|
|
sed -i -e "s|/usr/local/bin|$out/bin|g" -e "s|/usr/share|$out/share|g" Makefile antiword.h
|
2017-04-20 22:39:56 +01:00
|
|
|
substituteInPlace Makefile --replace "gcc" "cc"
|
2011-08-31 13:06:27 +01:00
|
|
|
'';
|
|
|
|
|
2020-05-06 22:18:09 +01:00
|
|
|
patches = [ ./10_fix_buffer_overflow_wordole_c_CVE-2014-8123.patch ];
|
2015-03-09 17:27:25 +00:00
|
|
|
|
2019-11-04 11:23:53 +00:00
|
|
|
installTargets = [ "global_install" ];
|
2011-08-31 12:55:51 +01:00
|
|
|
|
|
|
|
meta = {
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "http://www.winfield.demon.nl/";
|
2013-10-05 15:22:46 +01:00
|
|
|
description = "Convert MS Word documents to plain text or PostScript";
|
2021-01-15 05:42:41 +00:00
|
|
|
license = lib.licenses.gpl2;
|
2011-08-31 12:55:51 +01:00
|
|
|
|
2021-01-15 05:42:41 +00:00
|
|
|
platforms = with lib.platforms; linux ++ darwin;
|
2011-08-31 12:55:51 +01:00
|
|
|
};
|
|
|
|
}
|