summaryrefslogtreecommitdiff
path: root/lwjgl.nix
blob: ef77611c7e71954bf6703a38a19bb42e626818f5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
{
  lwjgl = {
    # Targets we want to build for
    targets = [
      "x86_64-unknown-linux-gnu"
      "aarch64-unknown-linux-gnu"
      "armv7l-unknown-linux-gnueabihf"
      "powerpc64le-unknown-linux-gnu"
      "riscv64-unknown-linux-gnu"
    ];

    # Versions we're building
    versions = {
      "3.3.3" = {
        hash = "sha256-5Zyl1UmfWGdxLWfQwdCO04pVcRUZh6QpV/ND5u4CYx8=";
        antHash = "sha256-wh15d3DPaIegkaA/AWvuGIxPFSOHmGA9iADy4B45IAs=";
      };

      "3.3.4" = {
        hash = "sha256-U0pPeTqVoruqqhhMrBrczy0qt83a8atr8DyRcGgX/yI=";
        antHash = "sha256-BE2sSPgYELCkww8aJV5DYTgHy4LT14RTVh6gRXA64+Q=";
      };

      "3.3.6" = {
        hash = "sha256-iXwsTo394uoq8/jIlfNuQlXW1lnuge+5/+00O4UdvyA=";
        antHash = "sha256-n2ON2eMBWZbu4A2yPBR4wN17dpWkBrf+1nq2l4uK3yk=";
      };
    };
  };
}