summaryrefslogtreecommitdiffstats
path: root/pkgs/tools/text
diff options
context:
space:
mode:
authorEdmund Wu <fangkazuto@gmail.com>2019-04-25 10:52:15 -0400
committerEdmund Wu <fangkazuto@gmail.com>2019-04-26 17:56:42 -0400
commit5f6ddc2747b864563c2c409d535bcfdfb2c69346 (patch)
tree621db74aed74cc8e516435dea1309ce67e6ca8c2 /pkgs/tools/text
parent5d2775156b5fe781895528ffa08513a22822127d (diff)
epubcheck: init at 4.2.0
Diffstat (limited to 'pkgs/tools/text')
-rw-r--r--pkgs/tools/text/epubcheck/default.nix41
1 files changed, 41 insertions, 0 deletions
diff --git a/pkgs/tools/text/epubcheck/default.nix b/pkgs/tools/text/epubcheck/default.nix
new file mode 100644
index 000000000000..d9acf106e2ea
--- /dev/null
+++ b/pkgs/tools/text/epubcheck/default.nix
@@ -0,0 +1,41 @@
+{ stdenv, fetchzip
+, jre, makeWrapper }:
+
+stdenv.mkDerivation rec {
+ pname = "epubcheck";
+ version = "4.2.0";
+
+ src = fetchzip {
+ url = "https://github.com/w3c/epubcheck/releases/download/v${version}/epubcheck-${version}.zip";
+ sha256 = "1bf5jbzqvgpvhbkprynxj75ilk3r6zld157vjf6k7l5g21cwyn9d";
+ };
+
+ nativeBuildInputs = [ makeWrapper ];
+
+ dontBuild = true;
+
+ installPhase = ''
+ mkdir -p $out/lib
+ cp -r lib/* $out/lib
+
+ mkdir -p $out/libexec/epubcheck
+ cp epubcheck.jar $out/libexec/epubcheck
+
+ classpath=$out/libexec/epubcheck/epubcheck.jar
+ for jar in $out/lib/*.jar; do
+ classpath="$classpath:$jar"
+ done
+
+ mkdir -p $out/bin
+ makeWrapper ${jre}/bin/java $out/bin/epubcheck \
+ --add-flags "-classpath $classpath com.adobe.epubcheck.tool.Checker"
+ '';
+
+ meta = with stdenv.lib; {
+ homepage = https://github.com/w3c/epubcheck;
+ description = "Validation tool for EPUB";
+ license = with licenses; [ asl20 bsd3 mpl10 w3c ];
+ platforms = platforms.all;
+ maintainers = with maintainers; [ eadwu ];
+ };
+}