summaryrefslogtreecommitdiff
path: root/lwjgl.nix
diff options
context:
space:
mode:
authorSeth Flynn <[email protected]>2025-03-05 15:27:26 -0500
committerSeth Flynn <[email protected]>2025-03-05 15:31:38 -0500
commit6fa4458f59160cdf9e82ad2138300b1041f510ad (patch)
tree88aeb808a13eadeacf0bc9b97d85c93f10de7a2d /lwjgl.nix
parentb229a37e59b9720b7017e72a6d159b869ff36458 (diff)
treewide: use flake
Signed-off-by: Seth Flynn <[email protected]>
Diffstat (limited to 'lwjgl.nix')
-rw-r--r--lwjgl.nix25
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=";
+ };
+ };
+ };
+}