erlang: move erlang_basho_R16B02 to Erlang's general builder.

This commit is contained in:
Gleb Peregud 2017-06-07 23:21:14 +02:00
parent e88a89ad33
commit c9cb6403d3
5 changed files with 36 additions and 74 deletions

View File

@ -25,7 +25,6 @@ mkDerivation rec {
sha256 = "17f3k5j17rdsah18gywjngip6cbfgp6nb9di6il4pahmf9yvqc8g"; sha256 = "17f3k5j17rdsah18gywjngip6cbfgp6nb9di6il4pahmf9yvqc8g";
}; };
in '' in ''
ln -s $out/lib/erlang/lib/erl_interface*/bin/erl_call $out/bin/erl_call
tar xf "${manpages}" -C "$out/lib/erlang" tar xf "${manpages}" -C "$out/lib/erlang"
for i in "$out"/lib/erlang/man/man[0-9]/*.[0-9]; do for i in "$out"/lib/erlang/man/man[0-9]/*.[0-9]; do
prefix="''${i%/*}" prefix="''${i%/*}"

View File

@ -1,76 +1,38 @@
{ stdenv, fetchurl, fetchFromGitHub, perl, gnum4, ncurses, openssl, autoconf264, gcc, erlang { pkgs, mkDerivation }:
, gnused, gawk, makeWrapper
, odbcSupport ? false, unixODBC ? null
, wxSupport ? false, mesa ? null, wxGTK ? null, xorg ? null
, enableDebugInfo ? false
, Carbon ? null, Cocoa ? null }:
assert wxSupport -> mesa != null && wxGTK != null && xorg != null; mkDerivation rec {
assert odbcSupport -> unixODBC != null; baseName = "erlang";
with stdenv.lib;
stdenv.mkDerivation rec {
name = "erlang-basho-" + version + "${optionalString odbcSupport "-odbc"}";
version = "16B02"; version = "16B02";
src = fetchFromGitHub { src = pkgs.fetchFromGitHub {
owner = "basho"; owner = "basho";
repo = "otp"; repo = "otp";
rev = "OTP_R16B02_basho8"; rev = "OTP_R16B02_basho8";
sha256 = "1w0hbm0axxxa45v3kl6bywc9ayir5vwqxjpnjlzc616ldszb2m0x"; sha256 = "1w0hbm0axxxa45v3kl6bywc9ayir5vwqxjpnjlzc616ldszb2m0x";
}; };
debugInfo = enableDebugInfo;
buildInputs =
[ perl gnum4 ncurses openssl makeWrapper autoconf264 gcc
] ++ optional wxSupport [ mesa wxGTK xorg.libX11 ]
++ optional odbcSupport [ unixODBC ]
++ optionals stdenv.isDarwin [ Carbon Cocoa ];
# Clang 4 (rightfully) thinks signed comparisons of pointers with NULL are nonsense
prePatch = ''
substituteInPlace lib/wx/c_src/wxe_impl.cpp --replace 'temp > NULL' 'temp != NULL'
'';
patchPhase = '' sed -i "s@/bin/rm@rm@" lib/odbc/configure.in erts/configure.in '';
postPatch = ''
patchSheBangs make
'';
preConfigure = '' preConfigure = ''
export HOME=$PWD/../ export HOME=$PWD/../
export LANG=C export LANG=C
export ERL_TOP=$(pwd) export ERL_TOP=$(pwd)
sed -e s@/bin/pwd@pwd@g -i otp_build sed -e s@/bin/pwd@pwd@g -i otp_build
sed -e s@"/usr/bin/env escript"@${erlang}/bin/escript@g -i lib/diameter/bin/diameterc sed -e s@"/usr/bin/env escript"@$(pwd)/bootstrap/bin/escript@g -i lib/diameter/bin/diameterc
'';
configureFlags= [
"--with-ssl=${openssl.dev}"
"--enable-smp-support"
"--enable-threads"
"--enable-kernel-poll"
"--disable-hipe"
"${optionalString odbcSupport "--with-odbc=${unixODBC}"}"
"${optionalString stdenv.isDarwin "--enable-darwin-64bit"}"
"${optionalString stdenv.isLinux "--enable-m64-build"}"
];
buildPhase = ''
./otp_build autoconf ./otp_build autoconf
./otp_build setup -a --prefix=$out $configureFlags
''; '';
enableHipe = false;
# Do not install docs, instead use prebuilt versions.
installTargets = "install";
postInstall = let postInstall = let
manpages = fetchurl { manpages = pkgs.fetchurl {
url = "http://www.erlang.org/download/otp_doc_man_R${version}.tar.gz"; url = "http://www.erlang.org/download/otp_doc_man_R${version}.tar.gz";
sha256 = "12apxjmmd591y9g9bhr97z5jbd1jarqg7wj0y2sqhl21hc1yp75p"; sha256 = "12apxjmmd591y9g9bhr97z5jbd1jarqg7wj0y2sqhl21hc1yp75p";
}; };
in '' in ''
ln -s $out/lib/erlang/lib/erl_interface*/bin/erl_call $out/bin/erl_call sed -e s@$(pwd)/bootstrap/bin/escript@$out/bin/escript@g -i $out/lib/erlang/lib/diameter-1.4.3/bin/diameterc
tar xf "${manpages}" -C "$out/lib/erlang" tar xf "${manpages}" -C "$out/lib/erlang"
for i in "$out"/lib/erlang/man/man[0-9]/*.[0-9]; do for i in "$out"/lib/erlang/man/man[0-9]/*.[0-9]; do
prefix="''${i%/*}" prefix="''${i%/*}"
@ -79,14 +41,6 @@ stdenv.mkDerivation rec {
done done
''; '';
# Some erlang bin/ scripts run sed and awk
postFixup = ''
wrapProgram $out/lib/erlang/bin/erl --prefix PATH ":" "${gnused}/bin/"
wrapProgram $out/lib/erlang/bin/start_erl --prefix PATH ":" "${gnused}/bin/:${gawk}/bin"
'';
setupHook = ./setup-hook.sh;
meta = { meta = {
homepage = "https://github.com/basho/otp/"; homepage = "https://github.com/basho/otp/";
description = "Programming language used for massively scalable soft real-time systems, Basho fork"; description = "Programming language used for massively scalable soft real-time systems, Basho fork";
@ -103,7 +57,7 @@ stdenv.mkDerivation rec {
''; '';
platforms = ["x86_64-linux" "x86_64-darwin"]; platforms = ["x86_64-linux" "x86_64-darwin"];
license = stdenv.lib.licenses.asl20; license = pkgs.stdenv.lib.licenses.asl20;
maintainers = with maintainers; [ mdaiter ]; maintainers = with pkgs.stdenv.lib.maintainers; [ mdaiter ];
}; };
} }

View File

@ -25,7 +25,6 @@ mkDerivation rec {
sha256 = "1hspm285bl7i9a0d4r6j6lm5yk4sb5d9xzpia3simh0z06hv5cc5"; sha256 = "1hspm285bl7i9a0d4r6j6lm5yk4sb5d9xzpia3simh0z06hv5cc5";
}; };
in '' in ''
ln -s $out/lib/erlang/lib/erl_interface*/bin/erl_call $out/bin/erl_call
tar xf "${manpages}" -C "$out/lib/erlang" tar xf "${manpages}" -C "$out/lib/erlang"
for i in "$out"/lib/erlang/man/man[0-9]/*.[0-9]; do for i in "$out"/lib/erlang/man/man[0-9]/*.[0-9]; do
prefix="''${i%/*}" prefix="''${i%/*}"

View File

@ -1,16 +1,20 @@
{ pkgs, stdenv, fetchurl, fetchFromGitHub, makeWrapper, autoconf, gawk, gnum4, gnused { pkgs, stdenv, fetchurl, fetchFromGitHub, makeWrapper, gawk, gnum4, gnused
, libxml2, libxslt, ncurses, openssl, perl , libxml2, libxslt, ncurses, openssl, perl, gcc, autoreconfHook
, openjdk ? null # javacSupport , openjdk ? null # javacSupport
, unixODBC ? null # odbcSupport , unixODBC ? null # odbcSupport
, mesa ? null, wxGTK ? null, wxmac ? null, xorg ? null # wxSupport , mesa ? null, wxGTK ? null, wxmac ? null, xorg ? null # wxSupport
}: }:
{ version { baseName ? "erlang"
, version
, sha256 ? null , sha256 ? null
, rev ? "OTP-${version}" , rev ? "OTP-${version}"
, src ? fetchFromGitHub { inherit rev sha256; owner = "erlang"; repo = "otp"; } , src ? fetchFromGitHub { inherit rev sha256; owner = "erlang"; repo = "otp"; }
, enableHipe ? true , enableHipe ? true
, enableDebugInfo ? false , enableDebugInfo ? false
, enableThreads ? true
, enableSmpSupport ? true
, enableKernelPoll ? true
, javacSupport ? false, javacPackages ? [ openjdk ] , javacSupport ? false, javacPackages ? [ openjdk ]
, odbcSupport ? false, odbcPackages ? [ unixODBC ] , odbcSupport ? false, odbcPackages ? [ unixODBC ]
, wxSupport ? true, wxPackages ? [ mesa wxGTK xorg.libX11 ] , wxSupport ? true, wxPackages ? [ mesa wxGTK xorg.libX11 ]
@ -22,6 +26,7 @@
, installTargets ? "install install-docs" , installTargets ? "install install-docs"
, checkPhase ? "", preCheck ? "", postCheck ? "" , checkPhase ? "", preCheck ? "", postCheck ? ""
, fixupPhase ? "", preFixup ? "", postFixup ? "" , fixupPhase ? "", preFixup ? "", postFixup ? ""
, meta ? null
}: }:
assert wxSupport -> (if stdenv.isDarwin assert wxSupport -> (if stdenv.isDarwin
@ -36,13 +41,15 @@ let
wxPackages2 = if stdenv.isDarwin then [ wxmac ] else wxPackages; wxPackages2 = if stdenv.isDarwin then [ wxmac ] else wxPackages;
in stdenv.mkDerivation ({ in stdenv.mkDerivation ({
name = "erlang-${version}" name = "${baseName}-${version}"
+ optionalString javacSupport "-javac" + optionalString javacSupport "-javac"
+ optionalString odbcSupport "-odbc"; + optionalString odbcSupport "-odbc";
inherit src version; inherit src version;
buildInputs = [ perl gnum4 ncurses openssl autoconf libxslt libxml2 makeWrapper ] buildInputs =
[ perl gnum4 ncurses openssl autoreconfHook libxslt libxml2 makeWrapper gcc
]
++ optionals wxSupport wxPackages2 ++ optionals wxSupport wxPackages2
++ optionals odbcSupport odbcPackages ++ optionals odbcSupport odbcPackages
++ optionals javacSupport javacPackages ++ optionals javacSupport javacPackages
@ -58,9 +65,9 @@ in stdenv.mkDerivation ({
''; '';
postPatch = '' postPatch = ''
patchShebangs make
${postPatch} ${postPatch}
patchShebangs make
''; '';
preConfigure = '' preConfigure = ''
@ -68,6 +75,9 @@ in stdenv.mkDerivation ({
''; '';
configureFlags = [ "--with-ssl=${openssl.dev}" ] configureFlags = [ "--with-ssl=${openssl.dev}" ]
++ optional enableThreads "--enable-threads"
++ optional enableSmpSupport "--enable-smp-support"
++ optional enableKernelPoll "--enable-kernel-poll"
++ optional enableHipe "--enable-hipe" ++ optional enableHipe "--enable-hipe"
++ optional javacSupport "--with-javac" ++ optional javacSupport "--with-javac"
++ optional odbcSupport "--with-odbc=${unixODBC}" ++ optional odbcSupport "--with-odbc=${unixODBC}"
@ -78,6 +88,8 @@ in stdenv.mkDerivation ({
# (PDFs are generated only when fop is available). # (PDFs are generated only when fop is available).
postInstall = '' postInstall = ''
${postInstall}
ln -s $out/lib/erlang/lib/erl_interface*/bin/erl_call $out/bin/erl_call ln -s $out/lib/erlang/lib/erl_interface*/bin/erl_call $out/bin/erl_call
''; '';
@ -125,8 +137,8 @@ in stdenv.mkDerivation ({
// optionalAttrs (installPhase != "") { inherit installPhase; } // optionalAttrs (installPhase != "") { inherit installPhase; }
// optionalAttrs (installTargets != "") { inherit installTargets; } // optionalAttrs (installTargets != "") { inherit installTargets; }
// optionalAttrs (preInstall != "") { inherit preInstall; } // optionalAttrs (preInstall != "") { inherit preInstall; }
// optionalAttrs (postInstall != "") { inherit postInstall; }
// optionalAttrs (fixupPhase != "") { inherit fixupPhase; } // optionalAttrs (fixupPhase != "") { inherit fixupPhase; }
// optionalAttrs (preFixup != "") { inherit preFixup; } // optionalAttrs (preFixup != "") { inherit preFixup; }
// optionalAttrs (postFixup != "") { inherit postFixup; } // optionalAttrs (postFixup != "") { inherit postFixup; }
// optionalAttrs (meta != null) { inherit meta; }
) )

View File

@ -38,11 +38,9 @@ rec {
}; };
# Bash fork, using custom builder. # Bash fork, using custom builder.
erlang_basho_R16B02 = callPackage ../development/interpreters/erlang/R16B02-8-basho.nix { erlang_basho_R16B02 = lib.callErlang ../development/interpreters/erlang/R16B02-8-basho.nix {
inherit (darwin.apple_sdk.frameworks) Carbon Cocoa;
}; };
erlang_basho_R16B02_odbc = callPackage ../development/interpreters/erlang/R16B02-8-basho.nix { erlang_basho_R16B02_odbc = erlang_basho_R16B02.override {
inherit (darwin.apple_sdk.frameworks) Carbon Cocoa;
odbcSupport = true; odbcSupport = true;
}; };