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

30 lines
808 B
Nix
Raw Normal View History

2015-07-02 01:47:15 +02:00
{ stdenv, fetchurl, autoconf, automake }:
stdenv.mkDerivation rec {
name = "unrtf-${version}";
version = "0.21.9";
src = fetchurl {
url = "https://www.gnu.org/software/unrtf/${name}.tar.gz";
sha256 = "1pcdzf2h1prn393dkvg93v80vh38q0v817xnbwrlwxbdz4k7i8r2";
};
nativeBuildInputs = [ autoconf automake ];
2015-07-02 01:47:15 +02:00
preConfigure = "./bootstrap";
2016-04-15 17:14:54 +02:00
outputs = [ "out" "man" ];
2015-07-02 01:47:15 +02: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/;
license = licenses.gpl3Plus;
maintainers = with maintainers; [ joachifm ];
platforms = platforms.unix;
};
}