Merge pull request #4890 from vbgl/jedit

jEdit: update from 4.4.2 to 5.1.0
This commit is contained in:
Michael Raskin
2014-11-13 12:44:19 +03:00
5 changed files with 334 additions and 17 deletions

View File

@@ -0,0 +1,22 @@
{stdenv, fetchurl}:
stdenv.mkDerivation {
name = "commons-bsf-1.2";
src = fetchurl {
url = mirror://apache/commons/bsf/binaries/bsf-bin-2.4.0.tar.gz;
sha256 = "1my3hv4y8cvrd1kr315wvbjqsamzlzswnbqcmsa2m4hqcafddfr8";
};
installPhase = ''
mkdir -p $out/share/java
cp lib/bsf.jar $out/share/java/
'';
meta = {
description = "Interface to scripting languages, including JSR-223";
homepage = http://commons.apache.org/proper/commons-bsf/;
license = stdenv.lib.licenses.asl20;
};
}

View File

@@ -0,0 +1,22 @@
{stdenv, fetchurl}:
stdenv.mkDerivation {
name = "commons-logging-1.2";
src = fetchurl {
url = mirror://apache/commons/logging/binaries/commons-logging-1.2-bin.tar.gz;
sha256 = "1gc70pmcv0x6ibl89jglmr22f8zpr63iaifi49nrq399qw2qhx9z";
};
installPhase = ''
mkdir -p $out/share/java
cp commons-logging-*.jar $out/share/java/
'';
meta = {
description = "Wrapper around a variety of logging API implementations";
homepage = http://commons.apache.org/proper/commons-logging;
license = stdenv.lib.licenses.asl20;
};
}