2021-07-28 23:31:09 +02:00
|
|
|
{ writeScriptBin, lib, ... }:
|
|
|
|
|
|
|
|
let
|
|
|
|
pListText = lib.generators.toPlist { } {
|
|
|
|
CFBundleDevelopmentRegion = "English";
|
|
|
|
CFBundleExecutable = "$name";
|
2022-02-20 05:30:16 +01:00
|
|
|
CFBundleIconFile = "$icon";
|
2022-03-21 12:35:42 +01:00
|
|
|
CFBundleIconFiles = [ "$icon" ];
|
2021-07-28 23:31:09 +02:00
|
|
|
CFBundleIdentifier = "org.nixos.$name";
|
|
|
|
CFBundleInfoDictionaryVersion = "6.0";
|
|
|
|
CFBundleName = "$name";
|
|
|
|
CFBundlePackageType = "APPL";
|
|
|
|
CFBundleSignature = "???";
|
|
|
|
};
|
|
|
|
in writeScriptBin "write-darwin-bundle" ''
|
|
|
|
shopt -s nullglob
|
|
|
|
|
2022-02-20 05:30:16 +01:00
|
|
|
readonly prefix=$1
|
|
|
|
readonly name=$2
|
|
|
|
readonly exec=$3
|
|
|
|
readonly icon=$4.icns
|
|
|
|
readonly squircle=''${5:-1}
|
|
|
|
readonly plist=$prefix/Applications/$name.app/Contents/Info.plist
|
2021-07-28 23:31:09 +02:00
|
|
|
|
2022-02-20 05:30:16 +01:00
|
|
|
cat > "$plist" <<EOF
|
2021-07-28 23:31:09 +02:00
|
|
|
${pListText}
|
|
|
|
EOF
|
|
|
|
|
2022-03-21 12:35:42 +01:00
|
|
|
if [[ $squircle == 0 || $squircle == "false" ]]; then
|
|
|
|
sed '/CFBundleIconFiles/,\|</array>|d' -i "$plist"
|
2022-02-20 05:30:16 +01:00
|
|
|
fi
|
|
|
|
|
2021-07-28 23:31:09 +02:00
|
|
|
cat > "$prefix/Applications/$name.app/Contents/MacOS/$name" <<EOF
|
|
|
|
#!/bin/bash
|
|
|
|
exec $prefix/bin/$exec
|
|
|
|
EOF
|
|
|
|
|
|
|
|
chmod +x "$prefix/Applications/$name.app/Contents/MacOS/$name"
|
|
|
|
''
|