BefatorNix/java/commons-logging_1_0_4.nix
2025-09-07 21:28:57 +02:00

28 lines
570 B
Nix

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