nixpkgs/pkgs/tools/text/unrtf/default.nix

40 lines
1.2 KiB
Nix
Raw Normal View History

2017-01-11 12:25:38 +00:00
{ stdenv, fetchurl, fetchpatch, autoconf, automake, libiconv }:
2015-07-01 23:47:15 +00:00
stdenv.mkDerivation rec {
pname = "unrtf";
2015-07-01 23:47:15 +00:00
version = "0.21.9";
src = fetchurl {
url = "https://www.gnu.org/software/unrtf/${pname}-${version}.tar.gz";
2015-07-01 23:47:15 +00:00
sha256 = "1pcdzf2h1prn393dkvg93v80vh38q0v817xnbwrlwxbdz4k7i8r2";
};
2017-01-11 12:25:38 +00:00
patches = [
(fetchpatch {
name = "CVE-2016-10091-0001-convert.c-Use-safe-buffer-size-and-snprintf.patch";
url = "https://bugs.debian.org/cgi-bin/bugreport.cgi?att=1;bug=849705;filename=0001-convert.c-Use-safe-buffer-size-and-snprintf.patch;msg=20";
sha256 = "0s0fjvm3zdm9967sijlipfrwjs0h23n2n8fa6f40xxp8y5qq5a0b";
})
];
nativeBuildInputs = [ autoconf automake ];
2015-07-01 23:47:15 +00:00
2018-03-14 19:17:05 +00:00
buildInputs = [ libiconv ];
2015-07-01 23:47:15 +00:00
preConfigure = "./bootstrap";
2016-04-15 15:14:54 +00:00
outputs = [ "out" "man" ];
2015-07-01 23:47:15 +00:00
meta = with stdenv.lib; {
description = "A converter from Rich Text Format to other formats";
longDescription = ''
UnRTF converts documents in Rich Text Format to other
formats, including HTML, LaTeX, and RTF itself.
'';
homepage = "https://www.gnu.org/software/unrtf/";
2015-07-01 23:47:15 +00:00
license = licenses.gpl3Plus;
maintainers = with maintainers; [ joachifm ];
platforms = platforms.unix;
};
}