nixpkgs/pkgs/development/interpreters/elixir/generic-builder.nix

80 lines
1.9 KiB
Nix
Raw Normal View History

2021-05-21 08:35:17 +00:00
{ pkgs
, lib
, stdenv
, fetchFromGitHub
, erlang
, 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"; }
} @ args:
let
inherit (lib) getVersion versionAtLeast optional;
in
2021-05-21 08:35:17 +00:00
assert versionAtLeast (getVersion erlang) minimumOTPVersion;
2021-05-21 08:35:17 +00:00
stdenv.mkDerivation ({
name = "${baseName}-${version}";
2021-05-21 08:35:42 +00:00
inherit src version debugInfo;
2016-01-12 13:53:31 +00:00
2021-05-21 08:35:17 +00:00
nativeBuildInputs = [ makeWrapper ];
buildInputs = [ erlang ];
2021-05-21 08:35:17 +00:00
LANG = "C.UTF-8";
LC_TYPE = "C.UTF-8";
2021-05-21 08:35:17 +00:00
buildFlags = optional debugInfo "ERL_COMPILER_OPTIONS=debug_info";
2021-05-21 08:35:17 +00:00
preBuild = ''
patchShebangs lib/elixir/generate_app.escript || true
2018-08-04 20:44:01 +00:00
2021-05-21 08:35:17 +00:00
substituteInPlace Makefile \
--replace "/usr/local" $out
'';
postFixup = ''
# Elixir binaries are shell scripts which run erl. Add some stuff
# 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 ":" "${lib.makeBinPath [ erlang coreutils curl bash ]}"
done
2021-05-21 08:35:17 +00:00
substituteInPlace $out/bin/mix \
--replace "/usr/bin/env elixir" "${coreutils}/bin/env elixir"
'';
2021-05-21 08:35:17 +00:00
pos = builtins.unsafeGetAttrPos "sha256" args;
meta = with lib; {
homepage = "https://elixir-lang.org/";
description = "A functional, meta-programming aware language built on top of the Erlang VM";
2021-05-21 08:35:17 +00:00
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.
'';
2021-05-21 08:35:17 +00:00
license = licenses.epl10;
platforms = platforms.unix;
maintainers = teams.beam.members;
};
})