Merge #168450: luajit*: update

This commit is contained in:
Vladimír Čunát 2022-04-20 09:05:39 +02:00
commit 9c6d3daf9d
No known key found for this signature in database
GPG key ID: E747DF1F9575A3AA
3 changed files with 8 additions and 8 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-2021-10-02"; version = "2.0.5-2022-03-13";
rev = "d3294fa63b344173db68dd612c6d3801631e28d4"; rev = "93a65d3cc263aef2d2feb3d7ff2206aca3bee17e";
isStable = true; isStable = true;
sha256 = "0ja6x7bv3iqnf6m8xk6qp1dgan2b7mys0ff86dw671fqqrfw28fn"; hash = "sha256-Gp7OdfxBGkW59zxWUml2ugPABLUv2SezMiDblA/FZ7g=";
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: !hasPrefix "aarch64-" p) platforms = with lib; filter (p: !hasPrefix "aarch64-" p)
(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-2021-10-27"; version = "2.1.0-2022-04-05";
rev = "b4b2dce9fc3ffaaaede39b36d06415311e2aa516"; rev = "5e3c45c43bb0e0f1f2917d432e9d2dba12c42a6e";
isStable = false; isStable = false;
sha256 = "185s071aa0yffz8npgdxj7l98cs987vddb2l5pzfcdqfj41gn55q"; hash = "sha256-Q+34hJDgyCqmtThHbxR16Nn7zhq4Ql142No2rO57HL0=";
} }

View file

@ -4,7 +4,7 @@
, buildPackages , buildPackages
, name ? "luajit-${version}" , name ? "luajit-${version}"
, isStable , isStable
, sha256 , hash
, rev , rev
, version , version
, extraMeta ? { } , extraMeta ? { }
@ -46,7 +46,7 @@ stdenv.mkDerivation rec {
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "LuaJIT"; owner = "LuaJIT";
repo = "LuaJIT"; repo = "LuaJIT";
inherit sha256 rev; inherit hash rev;
}; };
luaversion = "5.1"; luaversion = "5.1";