added eclipse 3.6.1, maven3, szip

svn path=/nixpkgs/trunk/; revision=24772
This commit is contained in:
Rob Vermaas
2010-11-19 13:24:11 +00:00
parent d233819021
commit db8748b170
4 changed files with 44 additions and 3 deletions
+15
View File
@@ -0,0 +1,15 @@
{stdenv, fetchurl, jdk, makeWrapper}:
assert jdk != null;
stdenv.mkDerivation {
name = "apache-maven-3.0";
builder = ./builder.sh;
src = fetchurl {
url = mirror://apache/maven/binaries/apache-maven-3.0-bin.tar.gz;
sha256 = "18i7vf7w79pvga4k0plixv2ppdvm476cgikaxxnar1fac5v0qsh4";
};
buildInputs = [makeWrapper];
inherit jdk;
}