Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
32 lines
915 B
Nix
32 lines
915 B
Nix
# 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 contains a .desktop file use
|
|
# `desktopToDarwinBundle` instead.
|
|
|
|
{
|
|
lib,
|
|
writeShellScript,
|
|
writeDarwinBundle,
|
|
}:
|
|
|
|
{
|
|
name, # The name of the Application file.
|
|
exec, # Executable file.
|
|
icon ? "", # Optional icon file.
|
|
}:
|
|
|
|
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}"
|
|
}
|
|
|
|
appendToVar preDistPhases makeDarwinBundlePhase
|
|
''
|