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;
- };
-}
diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix
index fa205e71133a..a5fa04d8936e 100644
--- a/pkgs/top-level/all-packages.nix
+++ b/pkgs/top-level/all-packages.nix
@@ -5950,8 +5950,6 @@ let
pdf2xml = callPackage ../development/libraries/pdf2xml {} ;
- pdf2htmlex = callPackage ../development/libraries/pdf2htmlex {} ;
-
phonon = callPackage ../development/libraries/phonon { };
phonon_backend_gstreamer = callPackage ../development/libraries/phonon-backend-gstreamer { };