summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRobert Obryk <robryk@gmail.com>2022-11-23 19:50:39 +0100
committerRobert Obryk <robryk@gmail.com>2022-11-23 19:50:39 +0100
commit2b14eec435ad7b4e7a3ca571458b176ef0367039 (patch)
tree94db72b4d56476b08e44fba3b4e010f5edf0a812
parent176d2084b5751560dfc32ec4a81858c9290d14c5 (diff)
tabula: mark as broken
The resulting executable fails with, among others, the following error: ``` org.jruby.rack.RackInitializationException: load error: /tmp/jetty-0.0.0.0-8080-tabula.jar-_-any-3187750518228613870.dir/webapp/WEB-INF/webapp/tabula_web -- java.lang.reflect.InaccessibleObjectException: Unable to make field public static final int java.util.zip.ZipConstants.ENDSIZ accessible: module java.base does not "opens java.util.zip" to unnamed module @4985cbcb ``` Working it around with `--add-opens` causes it to start, but to fail on any HTTP requests received without producing a useful error message in response or on std{out,err}.
-rw-r--r--pkgs/applications/misc/tabula/default.nix1
1 files changed, 1 insertions, 0 deletions
diff --git a/pkgs/applications/misc/tabula/default.nix b/pkgs/applications/misc/tabula/default.nix
index d2978ec7bd32..ec2ded975fed 100644
--- a/pkgs/applications/misc/tabula/default.nix
+++ b/pkgs/applications/misc/tabula/default.nix
@@ -36,5 +36,6 @@ stdenv.mkDerivation rec {
license = licenses.mit;
maintainers = [ maintainers.dpaetzel ];
platforms = platforms.all;
+ broken = true; # on 2022-11-23 this package builds, but produces an executable that fails immediately
};
}