b580e19510
Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/jbake/versions
35 lines
892 B
Nix
35 lines
892 B
Nix
{ stdenv, fetchzip, makeWrapper, jre }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
version = "2.6.3";
|
|
name = "jbake-${version}";
|
|
|
|
src = fetchzip {
|
|
url = "https://dl.bintray.com/jbake/binary/${name}-bin.zip";
|
|
sha256 = "000ax5vzirrhiykk86fmy4hibhl3pab0gkh5y35hiwhzhw5rwzk8";
|
|
};
|
|
|
|
buildInputs = [ makeWrapper jre ];
|
|
|
|
postPatch = "patchShebangs .";
|
|
|
|
installPhase = ''
|
|
mkdir -p $out
|
|
cp -vr * $out
|
|
wrapProgram $out/bin/jbake --set JAVA_HOME "${jre}"
|
|
'';
|
|
|
|
checkPhase = ''
|
|
export JAVA_HOME=${jre}
|
|
bin/jbake | grep -q "${version}" || (echo "jbake did not return correct version"; exit 1)
|
|
'';
|
|
doCheck = true;
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "JBake is a Java based, open source, static site/blog generator for developers & designers";
|
|
homepage = "https://jbake.org/";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ moaxcp ];
|
|
};
|
|
}
|