processing: symlink uppercase executable name to lowercase

Upstream changed the executable name to uppercase. Creating a symlink
with the old name prevents breaking existing scripts.
This commit is contained in:
Tony Wasserka
2026-02-25 23:43:08 +01:00
parent b0cf9126f3
commit 65cc689085
+4
View File
@@ -176,6 +176,10 @@ stdenv.mkDerivation rec {
runHook postInstall
'';
postFixup = ''
ln -s $out/bin/Processing $out/bin/processing
'';
meta = {
description = "Language and IDE for electronic arts";
homepage = "https://processing.org";