lumail: Use lua5.1

This is necessary because the standard library which is distributed with
lumail (the lumail core configuration so to speak) is written for lua5.1
apparently.

The website states 5.1 or 5.2 or 5.3, but 5.2 fails because "loadstring"
was deprecated in lua 5.2.

Signed-off-by: Matthias Beyer <mail@beyermatthias.de>
This commit is contained in:
Matthias Beyer 2018-03-11 16:59:29 +01:00
parent bb8e1c4512
commit 13e95f33db
2 changed files with 6 additions and 4 deletions

View file

@ -1,5 +1,5 @@
{ stdenv, fetchurl, pkgconfig, lua5_2, file, ncurses, gmime, pcre-cpp
, perl, perlPackages
{ stdenv, fetchurl, pkgconfig, lua, file, ncurses, gmime, pcre-cpp
, perl, perlPackages, makeWrapper
, debugBuild ? false
, alternativeGlobalConfigFilePath ? null
}:
@ -36,7 +36,7 @@ stdenv.mkDerivation {
nativeBuildInputs = [ pkgconfig makeWrapper ];
buildInputs = [
lua5_2 file ncurses gmime pcre-cpp
lua file ncurses gmime pcre-cpp
perl perlPackages.JSON perlPackages.NetIMAPClient
];

View file

@ -16440,7 +16440,9 @@ with pkgs;
looking-glass-client = callPackage ../applications/virtualization/looking-glass-client { };
lumail = callPackage ../applications/networking/mailreaders/lumail { };
lumail = callPackage ../applications/networking/mailreaders/lumail {
lua = lua5_1;
};
lv2bm = callPackage ../applications/audio/lv2bm { };