mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 23:03:40 +01:00
lfe: add message to OTP version assertion
This commit is contained in:
parent
c856d7ff12
commit
49fe429990
1 changed files with 4 additions and 2 deletions
|
@ -9,7 +9,7 @@
|
|||
}:
|
||||
|
||||
let
|
||||
inherit (stdenv.lib) getVersion versionAtLeast versions;
|
||||
inherit (stdenv.lib) assertMsg getVersion versionAtLeast versions;
|
||||
|
||||
mainVersion = versions.major (getVersion erlang);
|
||||
|
||||
|
@ -25,7 +25,9 @@ let
|
|||
};
|
||||
|
||||
in
|
||||
assert versionAtLeast maximumOTPVersion mainVersion;
|
||||
assert (assertMsg (versionAtLeast maximumOTPVersion mainVersion)) ''
|
||||
LFE ${version} is supported on OTP <=${maximumOTPVersion}, not ${mainVersion}.
|
||||
'';
|
||||
|
||||
buildRebar3 {
|
||||
name = baseName;
|
||||
|
|
Loading…
Reference in a new issue