Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)

classpath: fix build

+2 -2
+2 -2
pkgs/development/libraries/java/classpath/default.nix
··· 1 - { fetchurl, stdenv, javac, jvm, antlr, pkgconfig, gtk, gconf }: 1 + { fetchurl, stdenv, javac, jvm, antlr, pkgconfig, gtk, gconf, ecj }: 2 2 3 3 stdenv.mkDerivation rec { 4 4 name = "classpath-0.99"; ··· 10 10 11 11 patches = [ ./missing-casts.patch ]; 12 12 13 - buildInputs = [ javac jvm antlr pkgconfig gtk gconf ]; 13 + buildInputs = [ javac jvm antlr pkgconfig gtk gconf ecj ]; 14 14 15 15 configurePhase = '' 16 16 # GCJ tries to compile all of Classpath during the `configure' run when