summary refs log tree commit diff
path: root/pkgs/build-support/make-darwin-bundle/default.nix
blob: b8f58882fff32bb7d65c50b30bc04d3267c0dd95 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
# 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"
'')