Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 6 additions & 5 deletions pkgs/development/interpreters/luajit/2.0.nix
Original file line number Diff line number Diff line change
@@ -1,18 +1,19 @@
{ self, callPackage, fetchFromGitHub, lib, passthruFun }:

callPackage ./default.nix rec {
callPackage ./default.nix {
# The patch version is the timestamp of the git commit,
# obtain via `cat $(nix-build -A luajit_2_0.src)/.relver`
version = "2.0.1693340858";
version = "2.0.1713483859";

src = fetchFromGitHub {
owner = "LuaJIT";
repo = "LuaJIT";
rev = "c6ee7e19d107b4f9a140bb2ccf99162e26318c69";
hash = "sha256-3/7ASZRniytw5RkOy0F9arHkZevq6dxmya+Ba3A5IIA=";
rev = "9b5e837ac2dfdc0638830c048a47ca9378c504d3";
hash = "sha256-GflF/sELSNanc9G4WMzoOadUBOFSs6OwqhAXa4sudWA=";
};

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.linux ++ platforms.darwin);
};
Expand Down
8 changes: 4 additions & 4 deletions pkgs/development/interpreters/luajit/2.1.nix
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
{ self, callPackage, fetchFromGitHub, passthruFun }:

callPackage ./default.nix rec {
callPackage ./default.nix {
# The patch version is the timestamp of the git commit,
# obtain via `cat $(nix-build -A luajit_2_1.src)/.relver`
version = "2.1.1693350652";
version = "2.1.1713773202";

src = fetchFromGitHub {
owner = "LuaJIT";
repo = "LuaJIT";
rev = "41fb94defa8f830ce69a8122b03f6ac3216d392a";
hash = "sha256-iY80CA97RqJ9gF1Kl7ms/lC6m6KScjxWmljh5Gy7Brg=";
rev = "5790d253972c9d78a0c2aece527eda5b134bbbf7";
hash = "sha256-WG8AWDI182/9O7NrZlQ6ZH/esyYE2pWXMuSzWUuntSA=";
};

inherit self passthruFun;
Expand Down