nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix
fork

Configure Feed

Select the types of activity you want to include in your feed.

aspectj: use sha256 hash

+3 -3
+3 -3
pkgs/development/compilers/aspectj/default.nix
··· 1 1 {stdenv, fetchurl, jre}: 2 2 3 - stdenv.mkDerivation { 3 + stdenv.mkDerivation rec { 4 4 name = "aspectj-1.5.2"; 5 5 builder = ./builder.sh; 6 6 7 7 src = fetchurl { 8 - url = http://www.mirrorservice.org/sites/download.eclipse.org/eclipseMirror/technology/aspectj/aspectj-1.5.2.jar; 9 - md5 = "64245d451549325147e3ca1ec4c9e57c"; 8 + url = "http://archive.eclipse.org/tools/aspectj/${name}.jar"; 9 + sha256 = "1b3mx248dc1xka1vgsl0jj4sm0nfjsqdcj9r9036mvixj1zj3nmh"; 10 10 }; 11 11 12 12 inherit jre;