summaryrefslogtreecommitdiffstats
path: root/pkgs/development/interpreters/elixir/generic-builder.nix
diff options
context:
space:
mode:
authorJustin Wood <justin.k.wood@gmail.com>2017-06-26 23:09:11 -0400
committerJustin Wood <justin.k.wood@gmail.com>2017-06-26 23:13:58 -0400
commit46faaa69b86ba0ef9d416358de0ab3929985a6b4 (patch)
tree132c0d320c14ab801c3b2f6c6fbdeeb830ac47a2 /pkgs/development/interpreters/elixir/generic-builder.nix
parent803797c6d6983ea2652247b8335aa1f96744d323 (diff)
Make assertion for OTP version in the generic elixir builder
Changed Elixir 1.5 to include the fact it is an rc release
Diffstat (limited to 'pkgs/development/interpreters/elixir/generic-builder.nix')
-rw-r--r--pkgs/development/interpreters/elixir/generic-builder.nix101
1 files changed, 54 insertions, 47 deletions
diff --git a/pkgs/development/interpreters/elixir/generic-builder.nix b/pkgs/development/interpreters/elixir/generic-builder.nix
index 60f044e16d0f..a3f60a7f22e4 100644
--- a/pkgs/development/interpreters/elixir/generic-builder.nix
+++ b/pkgs/development/interpreters/elixir/generic-builder.nix
@@ -1,70 +1,77 @@
-{ pkgs, stdenv, fetchFromGitHub, erlang, rebar, makeWrapper, coreutils, curl
-, bash, debugInfo ? false }:
+{ pkgs, stdenv, fetchFromGitHub, erlang, rebar, makeWrapper,
+ coreutils, curl, bash, debugInfo ? false }:
{ baseName ? "elixir"
, version
+, minimumOTPVersion
, sha256 ? null
, rev ? "v${version}"
, src ? fetchFromGitHub { inherit rev sha256; owner = "elixir-lang"; repo = "elixir"; }
}:
-stdenv.mkDerivation ({
- name = "${baseName}-${version}";
+let
+ 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";
- LC_TYPE = "en_US.UTF-8";
+ inherit src version;
- setupHook = ./setup-hook.sh;
+ buildInputs = [ erlang rebar makeWrapper ];
- inherit debugInfo;
+ LANG = "en_US.UTF-8";
+ LC_TYPE = "en_US.UTF-8";
- buildFlags = if debugInfo
- then "ERL_COMPILER_OPTIONS=debug_info"
- else "";
+ setupHook = ./setup-hook.sh;
- preBuild = ''
- # The build process uses ./rebar. Link it to the nixpkgs rebar
- rm -v rebar
- ln -s ${rebar}/bin/rebar rebar
+ inherit debugInfo;
- substituteInPlace Makefile \
- --replace "/usr/local" $out
- '';
+ buildFlags = if debugInfo
+ then "ERL_COMPILER_OPTIONS=debug_info"
+ else "";
- postFixup = ''
- # Elixir binaries are shell scripts which run erl. Add some stuff
- # to PATH so the scripts can run without problems.
+ preBuild = ''
+ # The build process uses ./rebar. Link it to the nixpkgs rebar
+ rm -v rebar
+ ln -s ${rebar}/bin/rebar rebar
- 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 Makefile \
+ --replace "/usr/local" $out
+ '';
- substituteInPlace $out/bin/mix \
- --replace "/usr/bin/env elixir" "${coreutils}/bin/env elixir"
- '';
+ postFixup = ''
+ # Elixir binaries are shell scripts which run erl. Add some stuff
+ # to PATH so the scripts can run without problems.
- meta = with stdenv.lib; {
- homepage = "http://elixir-lang.org/";
- description = "A functional, meta-programming aware language built on top of the Erlang VM";
+ 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
- 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.
+ substituteInPlace $out/bin/mix \
+ --replace "/usr/bin/env elixir" "${coreutils}/bin/env elixir"
'';
- license = licenses.epl10;
- platforms = platforms.unix;
- maintainers = with maintainers; [ the-kenny havvy couchemar ankhers ];
- };
-})
+ 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 ];
+ };
+ })