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

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

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

  inherit jre;
  buildInputs = [jre];

  meta = {
    homepage = http://www.eclipse.org/aspectj/;
    description = "A seamless aspect-oriented extension to the Java programming language";
  };
}