Skip to content

Commit 65cc689

Browse files
committed
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.
1 parent b0cf912 commit 65cc689

1 file changed

Lines changed: 4 additions & 0 deletions

File tree

pkgs/by-name/pr/processing/package.nix

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -176,6 +176,10 @@ stdenv.mkDerivation rec {
176176
runHook postInstall
177177
'';
178178

179+
postFixup = ''
180+
ln -s $out/bin/Processing $out/bin/processing
181+
'';
182+
179183
meta = {
180184
description = "Language and IDE for electronic arts";
181185
homepage = "https://processing.org";

0 commit comments

Comments
 (0)