merge #8617: recoll: filters for LaTeX, RTF, and WP

This commit is contained in:
Vladimír Čunát
2015-07-20 11:00:04 +02:00
5 changed files with 68 additions and 4 deletions
+27
View 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;
};
}
+27
View File
@@ -0,0 +1,27 @@
{ stdenv, fetchurl }:
stdenv.mkDerivation rec {
name = "untex-${version}";
version = "1.2";
src = fetchurl {
url = "https://www.ctan.org/tex-archive/support/untex/${name}.tar.gz";
sha256 = "07p836jydd5yjy905m5ylnnac1h4cc4jsr41panqb808mlsiwmmy";
};
unpackPhase = "tar xf $src";
installTargets = "install install.man";
installFlags = "BINDIR=$(out)/bin MANDIR=$(out)/share/man/man1";
preBuild = ''
sed -i '1i#include <stdlib.h>\n#include <string.h>' untex.c
mkdir -p $out/bin $out/share/man/man1
'';
meta = with stdenv.lib; {
description = "A utility which removes LaTeX commands from input";
homepage = https://www.ctan.org/pkg/untex;
license = licenses.gpl1;
maintainers = with maintainers; [ joachifm ];
platforms = platforms.all;
};
}