summary refs log tree commit diff
path: root/pkgs/tools/text/untex
diff options
context:
space:
mode:
authorJoachim Fasting <joachifm@fastmail.fm>2015-07-02 02:02:36 +0200
committerJoachim Fasting <joachifm@fastmail.fm>2015-07-15 17:03:18 +0200
commit4bd52ddb88dd5bb9aed7bd674d3754391d3ddc94 (patch)
tree34ecc18c77ccc0c66dbe0e8e272f53a217ac7577 /pkgs/tools/text/untex
parentbcb314853a6f6124ac5f86b8cc56c04a0849c4ff (diff)
downloadnixpkgs-4bd52ddb88dd5bb9aed7bd674d3754391d3ddc94.tar
nixpkgs-4bd52ddb88dd5bb9aed7bd674d3754391d3ddc94.tar.gz
nixpkgs-4bd52ddb88dd5bb9aed7bd674d3754391d3ddc94.tar.bz2
nixpkgs-4bd52ddb88dd5bb9aed7bd674d3754391d3ddc94.tar.lz
nixpkgs-4bd52ddb88dd5bb9aed7bd674d3754391d3ddc94.tar.xz
nixpkgs-4bd52ddb88dd5bb9aed7bd674d3754391d3ddc94.tar.zst
nixpkgs-4bd52ddb88dd5bb9aed7bd674d3754391d3ddc94.zip
untex: init at 1.2
Diffstat (limited to 'pkgs/tools/text/untex')
-rw-r--r--pkgs/tools/text/untex/default.nix27
1 files changed, 27 insertions, 0 deletions
diff --git a/pkgs/tools/text/untex/default.nix b/pkgs/tools/text/untex/default.nix
new file mode 100644
index 00000000000..e2f6142a2a0
--- /dev/null
+++ b/pkgs/tools/text/untex/default.nix
@@ -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;
+  };
+}