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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

32 lines
850 B
Nix
Raw Normal View History

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 {
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
};
nativeBuildInputs = [ autoconf automake ];
2015-07-02 00:47:15 +01:00
2018-03-14 19:17:05 +00:00
buildInputs = [ libiconv ];
2015-07-02 00:47:15 +01:00
preConfigure = "./bootstrap";
2016-04-15 16:14:54 +01:00
outputs = [ "out" "man" ];
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.
'';
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;
};
}