Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
1{ self, callPackage, fetchFromGitHub, lib, passthruFun }:
2
3callPackage ./default.nix {
4 version = "2.0.5-2022-09-13";
5
6 src = fetchFromGitHub {
7 owner = "LuaJIT";
8 repo = "LuaJIT";
9 rev = "46e62cd963a426e83a60f691dcbbeb742c7b3ba2";
10 hash = "sha256-/XR9+6NjXs2TrUVKJNkH2h970BkDNFqMDJTWcy/bswU=";
11 };
12
13 extraMeta = { # this isn't precise but it at least stops the useless Hydra build
14 platforms = with lib; filter (p: !hasPrefix "aarch64-" p)
15 (platforms.linux ++ platforms.darwin);
16 };
17 inherit self passthruFun;
18}