summary refs log tree commit diff
path: root/pkgs/development/interpreters/luajit/2.0.nix
blob: 7db3830447f75098750d09b10bf2ceb5d7e0f5e0 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
{ self, callPackage, lib }:
callPackage ./default.nix {
  inherit self;
  version = "2.0.5";
  isStable = true;
  sha256 = "0yg9q4q6v028bgh85317ykc9whgxgysp76qzaqgq55y6jy11yjw7";
  extraMeta = { # this isn't precise but it at least stops the useless Hydra build
    platforms = with lib; filter (p: p != "aarch64-linux")
      (platforms.linux ++ platforms.darwin);
  };
}