depot/third_party/nixpkgs/pkgs/development/interpreters/luajit/2.1.nix
Default email bcb2f287e1 Project import generated by Copybara.
GitOrigin-RevId: d603719ec6e294f034936c0d0dc06f689d91b6c3
2024-06-20 20:27:18 +05:30

16 lines
456 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.1713773202";
src = fetchFromGitHub {
owner = "LuaJIT";
repo = "LuaJIT";
rev = "5790d253972c9d78a0c2aece527eda5b134bbbf7";
hash = "sha256-WG8AWDI182/9O7NrZlQ6ZH/esyYE2pWXMuSzWUuntSA=";
};
inherit self passthruFun;
}