Make assertion for OTP version in the generic elixir builder

Changed Elixir 1.5 to include the fact it is an rc release
This commit is contained in:
Justin Wood 2017-06-26 23:09:11 -04:00
parent 803797c6d6
commit 46faaa69b8
5 changed files with 63 additions and 57 deletions

View File

@ -62,12 +62,8 @@ rec {
inherit (stdenv.lib) versionAtLeast; inherit (stdenv.lib) versionAtLeast;
builder = callPackage ../interpreters/elixir/generic-builder.nix args; builder = callPackage ../interpreters/elixir/generic-builder.nix args;
in in
if versionAtLeast (getVersion args.erlang) vsn callPackage drv {
then mkDerivation = pkgs.makeOverridable builder;
callPackage drv { };
mkDerivation = pkgs.makeOverridable builder;
}
else
throw "Elixir requires at least Erlang/OTP R${vsn}.";
} }

View File

@ -3,4 +3,5 @@
mkDerivation rec { mkDerivation rec {
version = "1.3.4"; version = "1.3.4";
sha256 = "01qqv1ghvfadcwcr5p88w8j217cgaf094pmpqllij3l0q1yg104l"; sha256 = "01qqv1ghvfadcwcr5p88w8j217cgaf094pmpqllij3l0q1yg104l";
minimumOTPVersion = "18";
} }

View File

@ -3,4 +3,5 @@
mkDerivation rec { mkDerivation rec {
version = "1.4.5"; version = "1.4.5";
sha256 = "18ivcxmh5bak13k3rjy7jjzin57rgb2nffhwnqb2wl7bpi8mrarw"; sha256 = "18ivcxmh5bak13k3rjy7jjzin57rgb2nffhwnqb2wl7bpi8mrarw";
minimumOTPVersion = "18";
} }

View File

@ -3,4 +3,5 @@
mkDerivation rec { mkDerivation rec {
version = "1.5.0-rc.0"; version = "1.5.0-rc.0";
sha256 = "1p0sawz86w9na56c42ivdacqxzldjb9s9cvl2isj3sy4nwsa0l0j"; sha256 = "1p0sawz86w9na56c42ivdacqxzldjb9s9cvl2isj3sy4nwsa0l0j";
minimumOTPVersion = "18";
} }

View File

@ -1,70 +1,77 @@
{ pkgs, stdenv, fetchFromGitHub, erlang, rebar, makeWrapper, coreutils, curl { pkgs, stdenv, fetchFromGitHub, erlang, rebar, makeWrapper,
, bash, debugInfo ? false }: coreutils, curl, bash, debugInfo ? false }:
{ baseName ? "elixir" { baseName ? "elixir"
, version , version
, minimumOTPVersion
, sha256 ? null , sha256 ? null
, rev ? "v${version}" , rev ? "v${version}"
, src ? fetchFromGitHub { inherit rev sha256; owner = "elixir-lang"; repo = "elixir"; } , src ? fetchFromGitHub { inherit rev sha256; owner = "elixir-lang"; repo = "elixir"; }
}: }:
stdenv.mkDerivation ({ let
name = "${baseName}-${version}"; inherit (stdenv.lib) getVersion versionAtLeast;
inherit src version; in
assert versionAtLeast (getVersion erlang) minimumOTPVersion;
buildInputs = [ erlang rebar makeWrapper ]; stdenv.mkDerivation ({
name = "${baseName}-${version}";
LANG = "en_US.UTF-8"; inherit src version;
LC_TYPE = "en_US.UTF-8";
setupHook = ./setup-hook.sh; buildInputs = [ erlang rebar makeWrapper ];
inherit debugInfo; LANG = "en_US.UTF-8";
LC_TYPE = "en_US.UTF-8";
buildFlags = if debugInfo setupHook = ./setup-hook.sh;
then "ERL_COMPILER_OPTIONS=debug_info"
else "";
preBuild = '' inherit debugInfo;
# The build process uses ./rebar. Link it to the nixpkgs rebar
rm -v rebar
ln -s ${rebar}/bin/rebar rebar
substituteInPlace Makefile \ buildFlags = if debugInfo
--replace "/usr/local" $out then "ERL_COMPILER_OPTIONS=debug_info"
''; else "";
postFixup = '' preBuild = ''
# Elixir binaries are shell scripts which run erl. Add some stuff # The build process uses ./rebar. Link it to the nixpkgs rebar
# to PATH so the scripts can run without problems. rm -v rebar
ln -s ${rebar}/bin/rebar rebar
for f in $out/bin/*; do substituteInPlace Makefile \
b=$(basename $f) --replace "/usr/local" $out
if [ $b == "mix" ]; then continue; fi
wrapProgram $f \
--prefix PATH ":" "${stdenv.lib.makeBinPath [ erlang coreutils curl bash ]}" \
--set CURL_CA_BUNDLE /etc/ssl/certs/ca-certificates.crt
done
substituteInPlace $out/bin/mix \
--replace "/usr/bin/env elixir" "${coreutils}/bin/env elixir"
'';
meta = with stdenv.lib; {
homepage = "http://elixir-lang.org/";
description = "A functional, meta-programming aware language built on top of the Erlang VM";
longDescription = ''
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.
''; '';
license = licenses.epl10; postFixup = ''
platforms = platforms.unix; # Elixir binaries are shell scripts which run erl. Add some stuff
maintainers = with maintainers; [ the-kenny havvy couchemar ankhers ]; # to PATH so the scripts can run without problems.
};
}) for f in $out/bin/*; do
b=$(basename $f)
if [ $b == "mix" ]; then continue; fi
wrapProgram $f \
--prefix PATH ":" "${stdenv.lib.makeBinPath [ erlang coreutils curl bash ]}" \
--set CURL_CA_BUNDLE /etc/ssl/certs/ca-certificates.crt
done
substituteInPlace $out/bin/mix \
--replace "/usr/bin/env elixir" "${coreutils}/bin/env elixir"
'';
meta = with stdenv.lib; {
homepage = "http://elixir-lang.org/";
description = "A functional, meta-programming aware language built on top of the Erlang VM";
longDescription = ''
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.
'';
license = licenses.epl10;
platforms = platforms.unix;
maintainers = with maintainers; [ the-kenny havvy couchemar ankhers ];
};
})