aboutsummaryrefslogtreecommitdiff
path: root/nixpkgs/pkgs/development/interpreters/luajit/2.0.nix
blob: afb5dd9c5b641e1345decb5e6e06b9f7bbe9190d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
{ self, callPackage, lib }:
callPackage ./default.nix {
  inherit self;
  version = "2.0.5-2020-08-09";
  rev = "e296f56";
  isStable = true;
  sha256 = "0g4wvpmmrxj8ir6yi86gg93khy8ri7x4w091jihpxsmn670da21f";
  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);
  };
}