summary refs log tree commit diff
path: root/pkgs/applications/office/antiword/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/applications/office/antiword/default.nix')
-rw-r--r--pkgs/applications/office/antiword/default.nix28
1 files changed, 28 insertions, 0 deletions
diff --git a/pkgs/applications/office/antiword/default.nix b/pkgs/applications/office/antiword/default.nix
new file mode 100644
index 0000000000000..c4da2b609ce76
--- /dev/null
+++ b/pkgs/applications/office/antiword/default.nix
@@ -0,0 +1,28 @@
+{ fetchurl, stdenv }:
+
+let
+  name = "antiword-0.37";
+in
+stdenv.mkDerivation {
+  inherit name;
+
+  src = fetchurl {
+    url = "http://www.winfield.demon.nl/linux/${name}.tar.gz";
+    sha256 = "1b7mi1l20jhj09kyh0bq14qzz8vdhhyf35gzwsq43mn6rc7h0b4f";
+  };
+
+  patchPhase = ''
+    sed -i -e "s|/usr/local/bin|$out/bin|g" -e "s|/usr/share|$out/share|g" Makefile antiword.h
+  '';
+
+  installTargets = "global_install";
+
+  meta = {
+    homepage = "http://www.winfield.demon.nl/";
+    description = "convert MS Word documents to plain text or PostScript";
+    license = stdenv.lib.licenses.gpl2;
+
+    maintainers = [ stdenv.lib.maintainers.simons ];
+    platforms = stdenv.lib.platforms.linux;
+  };
+}