about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/interpreters/luajit/2.1.nix
blob: 90d7769e1d57dda3016de66da4f373895a35dc03 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
{ self, callPackage, fetchFromGitHub, passthruFun }:

callPackage ./default.nix {
  # The patch version is the timestamp of the git commit,
  # obtain via `cat $(nix-build -A luajit_2_1.src)/.relver`
  version = "2.1.1713773202";

  src = fetchFromGitHub {
    owner = "LuaJIT";
    repo = "LuaJIT";
    rev = "5790d253972c9d78a0c2aece527eda5b134bbbf7";
    hash = "sha256-WG8AWDI182/9O7NrZlQ6ZH/esyYE2pWXMuSzWUuntSA=";
  };

  inherit self passthruFun;
}