nixpkgs/pkgs/applications/misc/terminal-notifier/default.nix

35 lines
922 B
Nix
Raw Normal View History

{ stdenv, runtimeShell, lib, fetchzip }:
2015-01-26 01:39:46 +00:00
stdenv.mkDerivation rec {
pname = "terminal-notifier";
2015-01-26 01:39:46 +00:00
2017-11-02 17:23:59 +00:00
version = "2.0.0";
2015-01-26 01:39:46 +00:00
src = fetchzip {
url = "https://github.com/alloy/terminal-notifier/releases/download/${version}/terminal-notifier-${version}.zip";
2017-11-02 17:23:59 +00:00
sha256 = "0gi54v92hi1fkryxlz3k5s5d8h0s66cc57ds0vbm1m1qk3z4xhb0";
stripRoot = false;
2015-01-26 01:39:46 +00:00
};
dontBuild = true;
2015-01-26 01:39:46 +00:00
installPhase = ''
mkdir -p $out/Applications
mkdir -p $out/bin
cp -r terminal-notifier.app $out/Applications
cat >$out/bin/terminal-notifier <<EOF
#!${runtimeShell}
cd $out/Applications/terminal-notifier.app
exec ./Contents/MacOS/terminal-notifier "\$@"
EOF
chmod +x $out/bin/terminal-notifier
2015-01-26 01:39:46 +00:00
'';
meta = with lib; {
maintainers = with maintainers; [ cstrahan ];
homepage = "https://github.com/julienXX/terminal-notifier";
2018-09-01 12:21:53 +00:00
license = licenses.mit;
platforms = platforms.darwin;
2015-01-26 01:39:46 +00:00
};
}