incus: fix container tests from image rename (#360305)
[NixPkgs.git] / pkgs / development / interpreters / luajit / openresty.nix
blob372d9233bf1fcaf21c2c8a3baa2dfdc87f91d2d5
1 { self, callPackage, fetchFromGitHub, passthruFun }:
3 callPackage ./default.nix rec {
4   version = "2.1-20220915";
6   src = fetchFromGitHub {
7     owner = "openresty";
8     repo = "luajit2";
9     rev = "v${version}";
10     hash = "sha256-kMHE4iQtm2CujK9TVut1jNhY2QxYP514jfBsxOCyd4s=";
11   };
13   inherit self passthruFun;