about summary refs log tree commit diff
path: root/pkgs/development/compilers/aspectj/default.nix
blob: 10cd85120267788020cf815ba4c5d5df35638d23 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
{stdenv, fetchurl, jre}:

stdenv.mkDerivation {
  name = "aspectj-1.5.0";
  builder = ./builder.sh;

  src = fetchurl {
    url = http://www.mirrorservice.org/sites/download.eclipse.org/eclipseMirror/technology/aspectj/aspectj-1.5.0.jar;
    md5 = "76d716f699cdd84049323992b21f02fb";
  };

  inherit jre;
  buildInputs = [jre];
}