Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
1{ 2 self, 3 callPackage, 4 fetchFromGitHub, 5 passthruFun, 6}: 7 8callPackage ./default.nix rec { 9 version = "2.1-20220915"; 10 11 src = fetchFromGitHub { 12 owner = "openresty"; 13 repo = "luajit2"; 14 rev = "v${version}"; 15 hash = "sha256-kMHE4iQtm2CujK9TVut1jNhY2QxYP514jfBsxOCyd4s="; 16 }; 17 18 inherit self passthruFun; 19}