2023-08-15 08:07:22 +03:00
|
|
|
{ writeScriptBin, lib, makeBinaryWrapper }:
|
2021-07-29 00:31:09 +03:00
|
|
|
|
|
|
|
let
|
|
|
|
pListText = lib.generators.toPlist { } {
|
|
|
|
CFBundleDevelopmentRegion = "English";
|
|
|
|
CFBundleExecutable = "$name";
|
2022-02-20 07:30:16 +03:00
|
|
|
CFBundleIconFile = "$icon";
|
2022-03-21 14:35:42 +03:00
|
|
|
CFBundleIconFiles = [ "$icon" ];
|
2021-07-29 00:31:09 +03:00
|
|
|
CFBundleIdentifier = "org.nixos.$name";
|
|
|
|
CFBundleInfoDictionaryVersion = "6.0";
|
|
|
|
CFBundleName = "$name";
|
|
|
|
CFBundlePackageType = "APPL";
|
|
|
|
CFBundleSignature = "???";
|
|
|
|
};
|
|
|
|
in writeScriptBin "write-darwin-bundle" ''
|
|
|
|
shopt -s nullglob
|
|
|
|
|
2022-02-20 07:30:16 +03:00
|
|
|
readonly prefix=$1
|
|
|
|
readonly name=$2
|
2023-08-15 08:07:22 +03:00
|
|
|
# TODO: support executables with spaces in their names
|
|
|
|
readonly execName=''${3%% *} # Before the first space
|
|
|
|
[[ $3 =~ " " ]] && readonly execArgs=''${3#* } # Everything after the first space
|
2022-02-20 07:30:16 +03:00
|
|
|
readonly icon=$4.icns
|
|
|
|
readonly squircle=''${5:-1}
|
|
|
|
readonly plist=$prefix/Applications/$name.app/Contents/Info.plist
|
2023-08-15 08:07:22 +03:00
|
|
|
readonly binary=$prefix/bin/$execName
|
|
|
|
readonly bundleExecutable=$prefix/Applications/$name.app/Contents/MacOS/$name
|
2021-07-29 00:31:09 +03:00
|
|
|
|
2022-02-20 07:30:16 +03:00
|
|
|
cat > "$plist" <<EOF
|
2021-07-29 00:31:09 +03:00
|
|
|
${pListText}
|
|
|
|
EOF
|
|
|
|
|
2023-08-15 08:07:22 +03:00
|
|
|
if [[ $squircle == 0 || $squircle == "false" ]]; then
|
|
|
|
sed '/CFBundleIconFiles/,\|</array>|d' -i "$plist"
|
|
|
|
fi
|
2022-02-20 07:30:16 +03:00
|
|
|
|
2023-08-15 08:07:22 +03:00
|
|
|
if [[ -n "$execArgs" ]]; then
|
|
|
|
(
|
|
|
|
source ${makeBinaryWrapper}/nix-support/setup-hook
|
|
|
|
# WORKAROUND: makeBinaryWrapper fails when -u is set
|
|
|
|
set +u
|
|
|
|
makeBinaryWrapper "$binary" "$bundleExecutable" --add-flags "$execArgs"
|
|
|
|
)
|
|
|
|
else
|
|
|
|
ln -s "$binary" "$bundleExecutable"
|
|
|
|
fi
|
2021-07-29 00:31:09 +03:00
|
|
|
''
|