core/pkgs/build-support/make-darwin-bundle/default.nix

32 lines
911 B
Nix
Raw Normal View History

2024-05-02 00:46:19 +00:00
# given a package with an executable and an icon, make a darwin bundle for
# it. This package should be used when generating launchers for native Darwin
# applications. If the package conatins a .desktop file use
# `desktopToDarwinLauncher` instead.
2024-06-30 08:16:52 +00:00
{
lib,
writeShellScript,
writeDarwinBundle,
}:
2024-05-02 00:46:19 +00:00
2024-06-30 08:16:52 +00:00
{
name, # The name of the Application file.
exec, # Executable file.
icon ? "", # Optional icon file.
2024-05-02 00:46:19 +00:00
}:
writeShellScript "make-darwin-bundle-${name}" (''
function makeDarwinBundlePhase() {
mkdir -p "''${!outputBin}/Applications/${name}.app/Contents/MacOS"
mkdir -p "''${!outputBin}/Applications/${name}.app/Contents/Resources"
if [ -n "${icon}" ]; then
ln -s "${icon}" "''${!outputBin}/Applications/${name}.app/Contents/Resources"
fi
${writeDarwinBundle}/bin/write-darwin-bundle "''${!outputBin}" "${name}" "${exec}"
}
preDistPhases+=" makeDarwinBundlePhase"
'')