unrtf: init at 0.21.9
This commit is contained in:
parent
6ad8fab785
commit
bcb314853a
27
pkgs/tools/text/unrtf/default.nix
Normal file
27
pkgs/tools/text/unrtf/default.nix
Normal file
@ -0,0 +1,27 @@
|
||||
{ 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";
|
||||
};
|
||||
|
||||
buildInputs = [ autoconf automake ];
|
||||
|
||||
preConfigure = "./bootstrap";
|
||||
|
||||
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;
|
||||
};
|
||||
}
|
@ -3170,6 +3170,8 @@ let
|
||||
|
||||
unoconv = callPackage ../tools/text/unoconv { };
|
||||
|
||||
unrtf = callPackage ../tools/text/unrtf { };
|
||||
|
||||
upx = callPackage ../tools/compression/upx { };
|
||||
|
||||
urlview = callPackage ../applications/misc/urlview {};
|
||||
|
Loading…
Reference in New Issue
Block a user