linux_xanmod: 5.11.14 -> 5.11.15
[NixPkgs.git] / pkgs / tools / text / unrtf / default.nix
blob3357404a7d3c8c3c926ca22b436d082d001af026
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 = "A converter from Rich Text Format to other formats";
22     longDescription = ''
23       UnRTF converts documents in Rich Text Format to other
24       formats, including HTML, LaTeX, and RTF itself.
25     '';
26     homepage = "https://www.gnu.org/software/unrtf/";
27     license = licenses.gpl3Plus;
28     maintainers = with maintainers; [ joachifm ];
29     platforms = platforms.unix;
30   };