epubcheck: init at 4.2.0
This commit is contained in:
parent
5d2775156b
commit
5f6ddc2747
41
pkgs/tools/text/epubcheck/default.nix
Normal file
41
pkgs/tools/text/epubcheck/default.nix
Normal file
@ -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 ];
|
||||
};
|
||||
}
|
@ -2560,6 +2560,8 @@ in
|
||||
|
||||
eid-mw = callPackage ../tools/security/eid-mw { };
|
||||
|
||||
epubcheck = callPackage ../tools/text/epubcheck { };
|
||||
|
||||
mcrcon = callPackage ../tools/networking/mcrcon {};
|
||||
|
||||
s-tar = callPackage ../tools/archivers/s-tar {};
|
||||
|
Loading…
Reference in New Issue
Block a user