depot/pkgs/development/interpreters/luajit/2.1.nix
Luke Granger-Brown 57725ef3ec Squashed 'third_party/nixpkgs/' content from commit 76612b17c0ce
git-subtree-dir: third_party/nixpkgs
git-subtree-split: 76612b17c0ce71689921ca12d9ffdc9c23ce40b2
2024-11-10 23:59:47 +00:00

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;
}