summary refs log tree commit diff
diff options
context:
space:
mode:
authorMaximilian Bosch <maximilian@mbosch.me>2018-09-08 16:16:26 +0200
committerMaximilian Bosch <maximilian@mbosch.me>2018-09-08 16:16:26 +0200
commitde6544b50e53e0e843f95d876f4cca743fed00e0 (patch)
treec8c173aa960b359f1571e0519addda3e9331206c
parent7c69ae6259f23eaf385c786d998c56ea1e66c2db (diff)
downloadnixlib-de6544b50e53e0e843f95d876f4cca743fed00e0.tar
nixlib-de6544b50e53e0e843f95d876f4cca743fed00e0.tar.gz
nixlib-de6544b50e53e0e843f95d876f4cca743fed00e0.tar.bz2
nixlib-de6544b50e53e0e843f95d876f4cca743fed00e0.tar.lz
nixlib-de6544b50e53e0e843f95d876f4cca743fed00e0.tar.xz
nixlib-de6544b50e53e0e843f95d876f4cca743fed00e0.tar.zst
nixlib-de6544b50e53e0e843f95d876f4cca743fed00e0.zip
pdf2htmlEX: mark as broken
See https://hydra.nixos.org/build/81003667

The build is currently broken on Hydra due to the following error:

```
CairoFontEngine.cc:681:17: error: 'void Object::free()' is private within this context
```

This issue is was also reported in AUR (https://aur.archlinux.org/packages/pdf2htmlex/)
and in the upstream issue tracker (https://github.com/coolwanglu/pdf2htmlEX/issues/753) with
no answer until now.

The current README.md states that the project is no longer under active
development and it seems as there are currently no active maintainers
who could fix this:

* https://github.com/coolwanglu/pdf2htmlEX/commit/5d0a2239fcf6ef60a1140edb917fad69d751d6e3
* https://github.com/coolwanglu/pdf2htmlEX/issues/772
-rw-r--r--pkgs/tools/typesetting/pdf2htmlEX/default.nix1
1 files changed, 1 insertions, 0 deletions
diff --git a/pkgs/tools/typesetting/pdf2htmlEX/default.nix b/pkgs/tools/typesetting/pdf2htmlEX/default.nix
index e0f3681f43d8..ad9684910c0b 100644
--- a/pkgs/tools/typesetting/pdf2htmlEX/default.nix
+++ b/pkgs/tools/typesetting/pdf2htmlEX/default.nix
@@ -43,5 +43,6 @@ stdenv.mkDerivation rec {
     license     = licenses.gpl3Plus;
     maintainers = [ maintainers.taktoa ];
     platforms   = with platforms; linux;
+    broken      = true; # 2018-09-08
   };
 }