mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-16 18:53:17 +00:00
850fc57f56
Add a new module that allows darwin-style application bundles to be created
27 lines
855 B
Nix
27 lines
855 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 conatins a .desktop file use
|
|
# `desktopToDarwinLauncher` 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 "$out/Applications/${name}.app/Contents/MacOS"
|
|
mkdir -p "$out/Applications/${name}.app/Contents/Resources"
|
|
|
|
if [ -n "${icon}" ]; then
|
|
ln -s "${icon}" "$out/Applications/${name}.app/Contents/Resources"
|
|
fi
|
|
|
|
${writeDarwinBundle}/bin/write-darwin-bundle "$out" "${name}" "${exec}"
|
|
}
|
|
|
|
preDistPhases+=" makeDarwinBundlePhase"
|
|
'')
|