2021-01-26 19:32:48 +00:00
|
|
|
{ lib, stdenv, fetchurl, autoconf, automake, libiconv }:
|
2015-07-02 00:47:15 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 13:41:18 +01:00
|
|
|
pname = "unrtf";
|
2021-01-26 19:32:48 +00:00
|
|
|
version = "0.21.10";
|
2015-07-02 00:47:15 +01:00
|
|
|
|
|
|
|
src = fetchurl {
|
2021-01-26 19:32:48 +00:00
|
|
|
url = "https://ftp.gnu.org/gnu/${pname}/${pname}-${version}.tar.gz";
|
|
|
|
sha256 = "1bil6z4niydz9gqm2j861dkxmqnpc8m7hvidsjbzz7x63whj17xl";
|
2015-07-02 00:47:15 +01:00
|
|
|
};
|
|
|
|
|
2016-03-07 18:20:05 +00:00
|
|
|
nativeBuildInputs = [ autoconf automake ];
|
2015-07-02 00:47:15 +01:00
|
|
|
|
2018-03-14 19:17:05 +00:00
|
|
|
buildInputs = [ libiconv ];
|
2016-08-12 06:20:56 +01:00
|
|
|
|
2015-07-02 00:47:15 +01:00
|
|
|
preConfigure = "./bootstrap";
|
|
|
|
|
2016-04-15 16:14:54 +01:00
|
|
|
outputs = [ "out" "man" ];
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2015-07-02 00:47:15 +01:00
|
|
|
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.
|
|
|
|
'';
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://www.gnu.org/software/unrtf/";
|
2015-07-02 00:47:15 +01:00
|
|
|
license = licenses.gpl3Plus;
|
|
|
|
maintainers = with maintainers; [ joachifm ];
|
|
|
|
platforms = platforms.unix;
|
|
|
|
};
|
|
|
|
}
|