1 { lib, stdenv, fetchurl, autoconf, automake, libiconv }:
3 stdenv.mkDerivation rec {
8 url = "https://ftp.gnu.org/gnu/${pname}/${pname}-${version}.tar.gz";
9 sha256 = "1bil6z4niydz9gqm2j861dkxmqnpc8m7hvidsjbzz7x63whj17xl";
12 nativeBuildInputs = [ autoconf automake ];
14 buildInputs = [ libiconv ];
16 preConfigure = "./bootstrap";
18 outputs = [ "out" "man" ];
21 description = "Converter from Rich Text Format to other formats";
22 mainProgram = "unrtf";
24 UnRTF converts documents in Rich Text Format to other
25 formats, including HTML, LaTeX, and RTF itself.
27 homepage = "https://www.gnu.org/software/unrtf/";
28 license = licenses.gpl3Plus;
29 maintainers = with maintainers; [ joachifm ];
30 platforms = platforms.unix;