summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/development/compilers/scala/default.nix22
-rw-r--r--pkgs/development/tools/build-managers/apache-ant/ant-contrib.nix17
2 files changed, 39 insertions, 0 deletions
diff --git a/pkgs/development/compilers/scala/default.nix b/pkgs/development/compilers/scala/default.nix
new file mode 100644
index 000000000000..6de5faa6026d
--- /dev/null
+++ b/pkgs/development/compilers/scala/default.nix
@@ -0,0 +1,22 @@
+args: with args;
+
+stdenv.mkDerivation rec {
+  name = "scala-2.7.0-final";
+
+  src = fetchurl {
+    url = "http://www.scala-lang.org/downloads/distrib/files/${name}.tar.bz2";
+    sha256 = "17b9711bfddac611e907659cab4cb51f4114b886bbee243274d774b691dae248";
+  };
+
+  installPhase = ''
+    mkdir -p $out
+    mv * $out
+    rm -f $out/bin/*.bat
+  '';
+
+  phases = "unpackPhase installPhase";
+
+  meta = {
+    description = "Scala is a general purpose programming language";
+  };
+}
diff --git a/pkgs/development/tools/build-managers/apache-ant/ant-contrib.nix b/pkgs/development/tools/build-managers/apache-ant/ant-contrib.nix
new file mode 100644
index 000000000000..ca61f43c7385
--- /dev/null
+++ b/pkgs/development/tools/build-managers/apache-ant/ant-contrib.nix
@@ -0,0 +1,17 @@
+args: with args;
+
+stdenv.mkDerivation {
+  name = "ant-contrib-1.0b3";
+
+  installPhase = ''
+    mkdir -p $out
+    mv ant-contrib*.jar $out/
+  '';
+
+  phases = "unpackPhase installPhase";
+
+  src = fetchurl {
+    url = mirror://sourceforge/ant-contrib/ant-contrib-1.0b3-bin.tar.bz2;
+    sha256 = "96effcca2581c1ab42a4828c770b48d54852edf9e71cefc9ed2ffd6590571ad1";
+  };
+}