trellis: fix build for darwin

+6
+6
pkgs/development/embedded/fpga/trellis/default.nix
··· 41 41 cd libtrellis 42 42 ''; 43 43 44 + postInstall = lib.optionalString stdenv.isDarwin '' 45 + for f in $out/bin/* ; do 46 + install_name_tool -change "$out/lib/libtrellis.dylib" "$out/lib/trellis/libtrellis.dylib" "$f" 47 + done 48 + ''; 49 + 44 50 doInstallCheck = true; 45 51 46 52 installCheckPhase = ''