summaryrefslogtreecommitdiffstats
path: root/pkgs/applications/networking/mailreaders/lumail
diff options
context:
space:
mode:
authorMatthias Beyer <mail@beyermatthias.de>2018-03-11 16:59:29 +0100
committerMatthias Beyer <mail@beyermatthias.de>2018-03-12 16:43:27 +0100
commit13e95f33db894f7d7a46f1ffe054fe56ba83b030 (patch)
tree92eb310e428e82f3f3f13a97bef22daeed62974b /pkgs/applications/networking/mailreaders/lumail
parentbb8e1c4512e6556dfc46fc9af10d005599b84b7f (diff)
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>
Diffstat (limited to 'pkgs/applications/networking/mailreaders/lumail')
-rw-r--r--pkgs/applications/networking/mailreaders/lumail/default.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/applications/networking/mailreaders/lumail/default.nix b/pkgs/applications/networking/mailreaders/lumail/default.nix
index 5a333c8d982c..79deab46912b 100644
--- a/pkgs/applications/networking/mailreaders/lumail/default.nix
+++ b/pkgs/applications/networking/mailreaders/lumail/default.nix
@@ -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
];