nixpkgs mirror (for testing)
github.com/NixOS/nixpkgs
nix
1{ self, callPackage, fetchFromGitHub, passthruFun }:
2
3callPackage ./default.nix rec {
4 version = "2.1-20220915";
5
6 src = fetchFromGitHub {
7 owner = "openresty";
8 repo = "luajit2";
9 rev = "v${version}";
10 hash = "sha256-kMHE4iQtm2CujK9TVut1jNhY2QxYP514jfBsxOCyd4s=";
11 };
12
13 inherit self passthruFun;
14}