BefatorNix/java/velocity_1_4.nix
2025-09-21 17:18:28 +02:00

32 lines
691 B
Nix

{stdenv, fetchFromGitHub, jdk6, ant_1_7}: stdenv.mkDerivation rec {
pname = "velocity";
version = "1.4-dev";
outJar = "velocity-1.4-dev.jar";
src = fetchFromGitHub {
owner = "apache";
repo = "velocity-engine";
rev = "b5be9d2f7675d83a4be069f0d6c19f09eabd08bb";
hash = "sha256-WjJXLw8qcZA69GJAsYqTzwo8CuaWRs7LamBCTuZdKU0=";
};
patches = [./velocity.patch];
nativeBuildInputs = [jdk6 ant_1_7];
env = {
JAVA_HOME="${jdk6}";
};
buildPhase = ''
cd build
ant
cd ..
'';
installPhase = ''
mkdir $out
cp ./bin/velocity-1.4-dev.jar $out/velocity-1.4-dev.jar
'';
}