diff --git a/flake.nix b/flake.nix index eaf0fdf..4ba15fb 100644 --- a/flake.nix +++ b/flake.nix @@ -215,9 +215,9 @@ runHook preInstall mkdir -p "$out/bin" - binary="$(find build/gluonfx -type f -perm -0100 -name jprototerm | head -n1)" + binary="$(find build/gluonfx -path '*/gvm/*' -prune -o -type f -perm -0100 -print | head -n1)" if [ -z "$binary" ]; then - echo "Could not find native jprototerm binary under build/gluonfx" >&2 + echo "Could not find native executable under build/gluonfx" >&2 find build/gluonfx -type f -perm -0100 >&2 || true exit 1 fi diff --git a/settings.gradle b/settings.gradle new file mode 100644 index 0000000..6add00d --- /dev/null +++ b/settings.gradle @@ -0,0 +1,8 @@ +pluginManagement { + repositories { + gradlePluginPortal() + mavenCentral() + } +} + +rootProject.name = 'jprototerm'