xfce.xfce4-notes-plugin: Generate C code with newer Vala (#359006)
[NixPkgs.git] / pkgs / by-name / un / unrtf / package.nix
blob5e6766e4db942542edcad872ae7c5c3a6cd875ff
1 { lib, stdenv, fetchurl, autoconf, automake, libiconv }:
3 stdenv.mkDerivation rec {
4   pname = "unrtf";
5   version = "0.21.10";
7   src = fetchurl {
8     url = "https://ftp.gnu.org/gnu/${pname}/${pname}-${version}.tar.gz";
9     sha256 = "1bil6z4niydz9gqm2j861dkxmqnpc8m7hvidsjbzz7x63whj17xl";
10   };
12   nativeBuildInputs = [ autoconf automake ];
14   buildInputs = [ libiconv ];
16   preConfigure = "./bootstrap";
18   outputs = [ "out" "man" ];
20   meta = with lib; {
21     description = "Converter from Rich Text Format to other formats";
22     mainProgram = "unrtf";
23     longDescription = ''
24       UnRTF converts documents in Rich Text Format to other
25       formats, including HTML, LaTeX, and RTF itself.
26     '';
27     homepage = "https://www.gnu.org/software/unrtf/";
28     license = licenses.gpl3Plus;
29     maintainers = with maintainers; [ joachifm ];
30     platforms = platforms.unix;
31   };