2017-06-07 23:21:14 +02:00
|
|
|
{ pkgs, mkDerivation }:
|
2016-11-17 12:25:04 +01:00
|
|
|
|
2017-06-07 23:21:14 +02:00
|
|
|
mkDerivation rec {
|
|
|
|
baseName = "erlang";
|
2016-12-02 16:12:14 +01:00
|
|
|
version = "16B02";
|
2016-11-17 12:25:04 +01:00
|
|
|
|
2017-06-07 23:21:14 +02:00
|
|
|
src = pkgs.fetchFromGitHub {
|
2016-12-02 16:12:14 +01:00
|
|
|
owner = "basho";
|
|
|
|
repo = "otp";
|
|
|
|
rev = "OTP_R16B02_basho8";
|
|
|
|
sha256 = "1w0hbm0axxxa45v3kl6bywc9ayir5vwqxjpnjlzc616ldszb2m0x";
|
2016-11-17 12:25:04 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
preConfigure = ''
|
|
|
|
export HOME=$PWD/../
|
|
|
|
export LANG=C
|
|
|
|
export ERL_TOP=$(pwd)
|
|
|
|
sed -e s@/bin/pwd@pwd@g -i otp_build
|
2017-06-07 23:21:14 +02:00
|
|
|
sed -e s@"/usr/bin/env escript"@$(pwd)/bootstrap/bin/escript@g -i lib/diameter/bin/diameterc
|
2016-11-17 12:25:04 +01:00
|
|
|
|
2017-03-19 05:36:15 +01:00
|
|
|
./otp_build autoconf
|
2016-11-17 12:25:04 +01:00
|
|
|
'';
|
|
|
|
|
2017-06-07 23:21:14 +02:00
|
|
|
enableHipe = false;
|
|
|
|
|
|
|
|
# Do not install docs, instead use prebuilt versions.
|
|
|
|
installTargets = "install";
|
2016-11-17 12:25:04 +01:00
|
|
|
postInstall = let
|
2017-06-07 23:21:14 +02:00
|
|
|
manpages = pkgs.fetchurl {
|
2016-11-17 12:25:04 +01:00
|
|
|
url = "http://www.erlang.org/download/otp_doc_man_R${version}.tar.gz";
|
2016-12-02 16:12:14 +01:00
|
|
|
sha256 = "12apxjmmd591y9g9bhr97z5jbd1jarqg7wj0y2sqhl21hc1yp75p";
|
2016-11-17 12:25:04 +01:00
|
|
|
};
|
|
|
|
in ''
|
2017-06-07 23:21:14 +02:00
|
|
|
sed -e s@$(pwd)/bootstrap/bin/escript@$out/bin/escript@g -i $out/lib/erlang/lib/diameter-1.4.3/bin/diameterc
|
|
|
|
|
2016-11-17 12:25:04 +01:00
|
|
|
tar xf "${manpages}" -C "$out/lib/erlang"
|
|
|
|
for i in "$out"/lib/erlang/man/man[0-9]/*.[0-9]; do
|
|
|
|
prefix="''${i%/*}"
|
|
|
|
ensureDir "$out/share/man/''${prefix##*/}"
|
|
|
|
ln -s "$i" "$out/share/man/''${prefix##*/}/''${i##*/}erl"
|
|
|
|
done
|
|
|
|
'';
|
|
|
|
|
|
|
|
meta = {
|
2017-08-01 22:03:30 +02:00
|
|
|
homepage = https://github.com/basho/otp/;
|
2016-11-17 12:25:04 +01:00
|
|
|
description = "Programming language used for massively scalable soft real-time systems, Basho fork";
|
|
|
|
|
|
|
|
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.
|
2017-03-19 05:36:15 +01:00
|
|
|
This version of Erlang is Basho's version, forked from Ericsson's
|
2016-11-17 12:25:04 +01:00
|
|
|
repository.
|
|
|
|
'';
|
|
|
|
|
2016-11-20 16:06:00 +01:00
|
|
|
platforms = ["x86_64-linux" "x86_64-darwin"];
|
2017-06-07 23:21:14 +02:00
|
|
|
license = pkgs.stdenv.lib.licenses.asl20;
|
|
|
|
maintainers = with pkgs.stdenv.lib.maintainers; [ mdaiter ];
|
2016-11-17 12:25:04 +01:00
|
|
|
};
|
|
|
|
}
|