Merge #99227: luajit*: update and enableGC64 by default

This commit is contained in:
Vladimír Čunát 2020-10-07 07:40:11 +02:00
commit c7b3d98659
No known key found for this signature in database
GPG Key ID: E747DF1F9575A3AA
3 changed files with 7 additions and 7 deletions

View File

@ -1,10 +1,10 @@
{ self, callPackage, lib }: { self, callPackage, lib }:
callPackage ./default.nix { callPackage ./default.nix {
inherit self; inherit self;
version = "2.0.5-2020-08-09"; version = "2.0.5-2020-09-27";
rev = "e296f56"; rev = "e8ec6fe";
isStable = true; isStable = true;
sha256 = "0g4wvpmmrxj8ir6yi86gg93khy8ri7x4w091jihpxsmn670da21f"; sha256 = "0v7g216j0zrjp32nfjqqxzgxgvgbdx89h3x0djbqg3avsgxjwnbk";
extraMeta = { # this isn't precise but it at least stops the useless Hydra build extraMeta = { # this isn't precise but it at least stops the useless Hydra build
platforms = with lib; filter (p: p != "aarch64-linux") platforms = with lib; filter (p: p != "aarch64-linux")
(platforms.linux ++ platforms.darwin); (platforms.linux ++ platforms.darwin);

View File

@ -1,8 +1,8 @@
{ self, callPackage }: { self, callPackage }:
callPackage ./default.nix { callPackage ./default.nix {
inherit self; inherit self;
version = "2.1.0-2020-08-27"; version = "2.1.0-2020-09-30";
rev = "ff1e72a"; rev = "e9af1ab";
isStable = false; isStable = false;
sha256 = "0rlh5y48jbxnamr3a5i3szzh7y9ycvq052rw6m82gdhrb1jlamdz"; sha256 = "081vrr4snr1c38cscbq1a8barv7abc9czqqlm4qlbdksa8g32bbj";
} }

View File

@ -11,7 +11,7 @@
, enableFFI ? true , enableFFI ? true
, enableJIT ? true , enableJIT ? true
, enableJITDebugModule ? enableJIT , enableJITDebugModule ? enableJIT
, enableGC64 ? stdenv.hostPlatform.isAarch64 , enableGC64 ? true
, enable52Compat ? false , enable52Compat ? false
, enableValgrindSupport ? false , enableValgrindSupport ? false
, valgrind ? null , valgrind ? null