mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-01 23:22:37 +00:00
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:
parent
bb8e1c4512
commit
13e95f33db
@ -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
|
||||
];
|
||||
|
||||
|
@ -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 { };
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user