Files
nixpkgs/pkgs/development/interpreters/luajit/2.1.nix
Vladimír Čunát 5baff07c87 luajit_2_1: 2.1.1785577137 -> 2.1.1785763465
I saw some fixes for changes done in the parent commit in nixpkgs.
2026-08-12 09:54:05 +02:00

22 lines
465 B
Nix

{
self,
callPackage,
fetchFromGitHub,
passthruFun,
}:
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.1785763465";
src = fetchFromGitHub {
owner = "LuaJIT";
repo = "LuaJIT";
rev = "1edc3e52b67eaf6ce5f809be8e17d6862594b8bc";
hash = "sha256-mcOvVJ7AaoHrbEXxznpOkFoY7Kbd2aWMoOmyx5B4FIg=";
};
inherit self passthruFun;
}