diff options
Diffstat (limited to 'lwjgl.nix')
| -rw-r--r-- | lwjgl.nix | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/lwjgl.nix b/lwjgl.nix new file mode 100644 index 0000000..f860abb --- /dev/null +++ b/lwjgl.nix @@ -0,0 +1,25 @@ +{ + lwjgl = { + # Targets we want to build for + targets = [ + "x86_64-unknown-linux-gnu" + "i686-unknown-linux-gnu" + "aarch64-unknown-linux-gnu" + "armv7l-unknown-linux-gnueabihf" + "riscv64-unknown-linux-gnu" + ]; + + # Versions we're building + versions = { + "3.3.4" = { + hash = "sha256-U0pPeTqVoruqqhhMrBrczy0qt83a8atr8DyRcGgX/yI="; + antHash = "sha256-7jVlKBia8dJGuBjNwaljHBrXUep9KjOHHyZESayFnhs="; + }; + + "3.3.6" = { + hash = "sha256-iXwsTo394uoq8/jIlfNuQlXW1lnuge+5/+00O4UdvyA="; + antHash = "sha256-XNJpu6nS7gloQuKJadaUHeW0N9EpFKmJEib6/I2exVE="; + }; + }; + }; +} |
