at v206 560 B view raw
1{stdenv, fetchurl}: 2 3stdenv.mkDerivation { 4 name = "commons-logging-1.2"; 5 6 src = fetchurl { 7 url = mirror://apache/commons/logging/binaries/commons-logging-1.2-bin.tar.gz; 8 sha256 = "1gc70pmcv0x6ibl89jglmr22f8zpr63iaifi49nrq399qw2qhx9z"; 9 }; 10 11 installPhase = '' 12 mkdir -p $out/share/java 13 cp commons-logging-*.jar $out/share/java/ 14 ''; 15 16 meta = { 17 description = "Wrapper around a variety of logging API implementations"; 18 homepage = http://commons.apache.org/proper/commons-logging; 19 license = stdenv.lib.licenses.asl20; 20 }; 21} 22