Resolves https://github.com/NixOS/nixpkgs/issues/501949. Following https://github.com/NixOS/nixpkgs/pull/466611, JOGL from Maven was being used instead of JOGL in nixpkgs. The nixpkgs JOGL contains a patch to nixify a reference to /bin/true. Assisted-by: GLM-5
15 lines
383 B
Diff
15 lines
383 B
Diff
diff --git a/core/build.gradle.kts b/core/build.gradle.kts
|
|
index 8f7211b13..82c229f76 100644
|
|
--- a/core/build.gradle.kts
|
|
+++ b/core/build.gradle.kts
|
|
@@ -29,8 +29,7 @@ sourceSets{
|
|
}
|
|
|
|
dependencies {
|
|
- implementation(libs.jogl)
|
|
- implementation(libs.gluegen)
|
|
+ implementation(fileTree("@@joglPath@@/share/java") { include("*.jar") })
|
|
|
|
testImplementation(libs.junit)
|
|
}
|