summary refs log tree commit diff
path: root/pkgs/development
diff options
context:
space:
mode:
authorDomen Kožar <domen@dev.si>2014-08-25 19:12:40 +0200
committerDomen Kožar <domen@dev.si>2014-08-26 09:57:38 +0200
commitabe7730f23eb2b0b55308639dba1fbdff2f0c652 (patch)
tree5e1658d8802734049eba499af91ea58b3a005ee7 /pkgs/development
parent72954393f8306206c7ace1c19e6097982d0dd769 (diff)
downloadnixlib-abe7730f23eb2b0b55308639dba1fbdff2f0c652.tar
nixlib-abe7730f23eb2b0b55308639dba1fbdff2f0c652.tar.gz
nixlib-abe7730f23eb2b0b55308639dba1fbdff2f0c652.tar.bz2
nixlib-abe7730f23eb2b0b55308639dba1fbdff2f0c652.tar.lz
nixlib-abe7730f23eb2b0b55308639dba1fbdff2f0c652.tar.xz
nixlib-abe7730f23eb2b0b55308639dba1fbdff2f0c652.tar.zst
nixlib-abe7730f23eb2b0b55308639dba1fbdff2f0c652.zip
remove pdf2htmlex: too much hassle to fix it
Diffstat (limited to 'pkgs/development')
-rw-r--r--pkgs/development/libraries/pdf2htmlex/default.nix27
1 files changed, 0 insertions, 27 deletions
diff --git a/pkgs/development/libraries/pdf2htmlex/default.nix b/pkgs/development/libraries/pdf2htmlex/default.nix
deleted file mode 100644
index 597385aa9fa3..000000000000
--- a/pkgs/development/libraries/pdf2htmlex/default.nix
+++ /dev/null
@@ -1,27 +0,0 @@
-{stdenv, fetchurl, cmake, poppler, fontforge, unzip, pkgconfig, python}:
-
-stdenv.mkDerivation rec {
-  version = "0.8.1";
-  name = "pdf2htmlex-${version}";
-  
-  src = fetchurl {
-      url = "https://github.com/coolwanglu/pdf2htmlEX/archive/v${version}.zip";
-      sha256 = "0v8x03vq46ng9s27ryn76lcsjgpxgak6062jnx59lnyz856wvp8a";
-  };
-
-  buildInputs = [
-    cmake
-    unzip
-    poppler
-    fontforge
-    pkgconfig
-    python
-  ];
-
-  meta = with stdenv.lib; {
-    description = "Convert PDF to HTML without losing text or format. ";
-    license = licenses.gpl3;
-    maintainers = [ maintainers.iElectric ];
-    platforms = platforms.linux;
-  };
-}