summary refs log tree commit diff
path: root/pkgs/development/interpreters/erlang
diff options
context:
space:
mode:
authorPeter Simons <simons@cryp.to>2013-05-25 02:10:36 -0700
committerPeter Simons <simons@cryp.to>2013-05-25 02:10:36 -0700
commitce8c05197223040cc4deafe71fc6203073515eb7 (patch)
tree72546225c46f1bac6f252b61c95c45baf416b9d2 /pkgs/development/interpreters/erlang
parent64661b0a2b7aaf0519d4afb30eeb77b4eeceea63 (diff)
parent33eb2832c3767d2df76b35a809cbd2c9365e3874 (diff)
downloadnixlib-ce8c05197223040cc4deafe71fc6203073515eb7.tar
nixlib-ce8c05197223040cc4deafe71fc6203073515eb7.tar.gz
nixlib-ce8c05197223040cc4deafe71fc6203073515eb7.tar.bz2
nixlib-ce8c05197223040cc4deafe71fc6203073515eb7.tar.lz
nixlib-ce8c05197223040cc4deafe71fc6203073515eb7.tar.xz
nixlib-ce8c05197223040cc4deafe71fc6203073515eb7.tar.zst
nixlib-ce8c05197223040cc4deafe71fc6203073515eb7.zip
Merge pull request #553 from orbitz/upgrade-erl-r15b03-1
erlang: add R15B03-1
Diffstat (limited to 'pkgs/development/interpreters/erlang')
-rw-r--r--pkgs/development/interpreters/erlang/R15B03.nix45
1 files changed, 45 insertions, 0 deletions
diff --git a/pkgs/development/interpreters/erlang/R15B03.nix b/pkgs/development/interpreters/erlang/R15B03.nix
new file mode 100644
index 000000000000..d282e45dc622
--- /dev/null
+++ b/pkgs/development/interpreters/erlang/R15B03.nix
@@ -0,0 +1,45 @@
+{ stdenv, fetchurl, perl, gnum4, ncurses, openssl
+, wxSupport ? false, mesa ? null, wxGTK ? null, xlibs ? null }:
+
+assert wxSupport -> mesa != null && wxGTK != null && xlibs != null;
+
+let version = "15B03"; in
+
+stdenv.mkDerivation {
+  name = "erlang-" + version;
+
+  src = fetchurl {
+    url = "http://www.erlang.org/download/otp_src_R15B03-1.tar.gz";
+    sha256 = "4bccac86dd76aec050252e44276a0283a0df9218e6470cf042a9b9f9dfc9476c";
+  };
+
+  buildInputs =
+    [ perl gnum4 ncurses openssl
+    ] ++ stdenv.lib.optional wxSupport [ mesa wxGTK xlibs.libX11 ];
+
+  patchPhase = '' sed -i "s@/bin/rm@rm@" lib/odbc/configure erts/configure '';
+
+  preConfigure = ''
+    export HOME=$PWD/../
+    sed -e s@/bin/pwd@pwd@g -i otp_build
+  '';
+
+  configureFlags = "--with-ssl=${openssl}";
+
+  meta = {
+    homepage = "http://www.erlang.org/";
+    description = "Programming language used for massively scalable soft real-time systems";
+
+    longDescription = ''
+      Erlang is a programming language used to build massively scalable
+      soft real-time systems with requirements on high availability.
+      Some of its uses are in telecoms, banking, e-commerce, computer
+      telephony and instant messaging. Erlang's runtime system has
+      built-in support for concurrency, distribution and fault
+      tolerance.
+    '';
+
+    platforms = stdenv.lib.platforms.linux;
+    maintainers = [ stdenv.lib.maintainers.simons ];
+  };
+}