Files
nixpkgs/pkgs/by-name/pr/processing/use-nixpkgs-jogl.patch
Evan Goode ab2b06e48e processing: Use jogl from nixpkgs
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
2026-03-21 15:32:45 -04:00

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)
}