BefatorNix/java/commons-logging_1_0_3.nix
2025-09-17 23:24:29 +02:00

28 lines
570 B
Nix

{stdenv, fetchurl, fetchFromGitHub, jdk6, ant_1_7}: stdenv.mkDerivation rec {
pname = "commons-logging";
version = "1.0.3";
outJar = "commons-logging.jar";
src = fetchFromGitHub {
owner = "apache";
repo = pname;
rev = "LOGGING_1_0_3";
hash = "sha256-+acvWKFRD2jSpnLl5i3EJUDD4V+SyVP0ydcxG8HQ+JY=";
};
nativeBuildInputs = [jdk6 ant_1_7];
env = {
JAVA_HOME="${jdk6}";
};
buildPhase = ''
ant dist
'';
installPhase = ''
mkdir $out
cp -r ./dist/* $out/
'';
}