2016-05-06 12:14:40 +03:00
|
|
|
{ stdenv, fetchFromGitHub, erlang, rebar, makeWrapper, coreutils, curl, bash,
|
2016-03-30 20:19:55 +03:00
|
|
|
debugInfo ? false }:
|
2013-08-07 18:06:11 +04:00
|
|
|
|
2016-01-12 16:53:31 +03:00
|
|
|
stdenv.mkDerivation rec {
|
2013-11-29 20:00:04 +04:00
|
|
|
name = "elixir-${version}";
|
2017-03-07 13:20:24 +03:00
|
|
|
version = "1.4.2";
|
2013-08-07 18:06:11 +04:00
|
|
|
|
2016-05-06 12:14:40 +03:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "elixir-lang";
|
|
|
|
repo = "elixir";
|
|
|
|
rev = "v${version}";
|
2017-03-07 13:20:24 +03:00
|
|
|
sha256 = "0jqww3l5jgqvlqpp6lh8i55v23a5imw4giarr05gsl7imv2qqshz";
|
2013-08-07 18:06:11 +04:00
|
|
|
};
|
|
|
|
|
2013-08-26 04:44:54 +04:00
|
|
|
buildInputs = [ erlang rebar makeWrapper ];
|
2013-08-07 18:06:11 +04:00
|
|
|
|
2016-01-12 16:53:31 +03:00
|
|
|
# Elixir expects that UTF-8 locale to be set (see https://github.com/elixir-lang/elixir/issues/3548).
|
|
|
|
# In other cases there is warnings during compilation.
|
|
|
|
LANG = "en_US.UTF-8";
|
|
|
|
LC_TYPE = "en_US.UTF-8";
|
|
|
|
|
2016-04-01 23:13:02 +03:00
|
|
|
setupHook = ./setup-hook.sh;
|
|
|
|
|
2016-06-15 17:15:06 +03:00
|
|
|
inherit debugInfo;
|
|
|
|
|
2016-03-30 20:19:55 +03:00
|
|
|
buildFlags = if debugInfo
|
|
|
|
then "ERL_COMPILER_OPTIONS=debug_info"
|
|
|
|
else "";
|
|
|
|
|
2013-08-07 18:06:11 +04:00
|
|
|
preBuild = ''
|
2014-02-08 22:05:31 +04:00
|
|
|
# The build process uses ./rebar. Link it to the nixpkgs rebar
|
|
|
|
rm -v rebar
|
|
|
|
ln -s ${rebar}/bin/rebar rebar
|
|
|
|
|
2013-08-07 18:06:11 +04:00
|
|
|
substituteInPlace Makefile \
|
|
|
|
--replace "/usr/local" $out
|
|
|
|
'';
|
2013-08-07 18:09:08 +04:00
|
|
|
|
2013-08-26 04:44:54 +04:00
|
|
|
postFixup = ''
|
2014-02-08 22:05:31 +04:00
|
|
|
# Elixir binaries are shell scripts which run erl. Add some stuff
|
|
|
|
# to PATH so the scripts can run without problems.
|
2013-08-26 04:44:54 +04:00
|
|
|
|
2014-10-11 18:49:05 +04:00
|
|
|
for f in $out/bin/*; do
|
|
|
|
b=$(basename $f)
|
|
|
|
if [ $b == "mix" ]; then continue; fi
|
2013-08-26 04:44:54 +04:00
|
|
|
wrapProgram $f \
|
2016-08-23 01:06:51 +03:00
|
|
|
--prefix PATH ":" "${stdenv.lib.makeBinPath [ erlang coreutils curl bash ]}" \
|
2015-07-31 02:30:15 +03:00
|
|
|
--set CURL_CA_BUNDLE /etc/ssl/certs/ca-certificates.crt
|
2013-08-26 04:44:54 +04:00
|
|
|
done
|
2015-09-06 06:33:01 +03:00
|
|
|
|
|
|
|
substituteInPlace $out/bin/mix \
|
2015-09-28 23:38:16 +03:00
|
|
|
--replace "/usr/bin/env elixir" "${coreutils}/bin/env elixir"
|
2013-08-26 04:44:54 +04:00
|
|
|
'';
|
|
|
|
|
2013-09-26 23:37:49 +04:00
|
|
|
meta = with stdenv.lib; {
|
2013-08-07 18:09:08 +04:00
|
|
|
homepage = "http://elixir-lang.org/";
|
2013-09-26 23:37:49 +04:00
|
|
|
description = "A functional, meta-programming aware language built on top of the Erlang VM";
|
2013-08-07 18:09:08 +04:00
|
|
|
|
|
|
|
longDescription = ''
|
2013-11-29 20:00:04 +04:00
|
|
|
Elixir is a functional, meta-programming aware language built on
|
|
|
|
top of the Erlang VM. It is a dynamic language with flexible
|
|
|
|
syntax and macro support that leverages Erlang's abilities to
|
|
|
|
build concurrent, distributed and fault-tolerant applications
|
|
|
|
with hot code upgrades.
|
2013-08-07 18:09:08 +04:00
|
|
|
'';
|
|
|
|
|
2013-09-26 23:37:49 +04:00
|
|
|
license = licenses.epl10;
|
2014-09-03 23:14:57 +04:00
|
|
|
platforms = platforms.unix;
|
2016-01-12 16:53:31 +03:00
|
|
|
maintainers = with maintainers; [ the-kenny havvy couchemar ];
|
2013-08-07 18:09:08 +04:00
|
|
|
};
|
2013-08-07 18:06:11 +04:00
|
|
|
}
|