nixpkgs/pkgs/applications/misc/terminal-notifier/default.nix
Svend Sorensen db163cdc3b terminal-notifier: add shebang line to wrapper
Add shebang line to terminal-notifier to wrapper script. Without this line, the
script fails with "Exec format error" when called outside a shell (e.g. from
the Emacs alert package).
2017-07-18 22:57:55 +03:00

32 lines
804 B
Nix

{ stdenv, lib, fetchzip }:
stdenv.mkDerivation rec {
name = "terminal-notifier-${version}";
version = "1.5.0";
src = fetchzip {
url = "https://github.com/alloy/terminal-notifier/releases/download/${version}/terminal-notifier-${version}.zip";
sha256 = "09x7vl0kddivqq3pyrk6sg1f0sv5l7nj0bmblq222zk3b09bgg8p";
};
dontBuild = true;
installPhase = ''
mkdir -p $out/Applications
mkdir -p $out/bin
cp -r terminal-notifier.app $out/Applications
cat >$out/bin/terminal-notifier <<EOF
#!${stdenv.shell}
cd $out/Applications/terminal-notifier.app
exec ./Contents/MacOS/terminal-notifier "\$@"
EOF
chmod +x $out/bin/terminal-notifier
'';
meta = with lib; {
maintainers = with maintainers; [ cstrahan ];
platforms = platforms.darwin;
};
}