Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 16.09 20 lines 529 B view raw
1{stdenv, fetchurl, jre}: 2 3stdenv.mkDerivation { 4 name = "aspectj-1.5.2"; 5 builder = ./builder.sh; 6 7 src = fetchurl { 8 url = http://www.mirrorservice.org/sites/download.eclipse.org/eclipseMirror/technology/aspectj/aspectj-1.5.2.jar; 9 md5 = "64245d451549325147e3ca1ec4c9e57c"; 10 }; 11 12 inherit jre; 13 buildInputs = [jre]; 14 15 meta = { 16 homepage = http://www.eclipse.org/aspectj/; 17 description = "A seamless aspect-oriented extension to the Java programming language"; 18 platforms = stdenv.lib.platforms.unix; 19 }; 20}