summary refs log tree commit diff
path: root/pkgs/development/libraries/java/commons/bsf/default.nix
blob: b29286831841501cbc03edf2108ebadfb51b2b70 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
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;
  };
}