about summary refs log tree commit diff
path: root/pkgs/development/interpreters/luajit/openresty.nix
blob: 372d9233bf1fcaf21c2c8a3baa2dfdc87f91d2d5 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
{ self, callPackage, fetchFromGitHub, passthruFun }:

callPackage ./default.nix rec {
  version = "2.1-20220915";

  src = fetchFromGitHub {
    owner = "openresty";
    repo = "luajit2";
    rev = "v${version}";
    hash = "sha256-kMHE4iQtm2CujK9TVut1jNhY2QxYP514jfBsxOCyd4s=";
  };

  inherit self passthruFun;
}