2019-02-26 11:45:54 +00:00
|
|
|
{ stdenv, runtimeShell, lib, fetchzip }:
|
2015-01-26 01:39:46 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "terminal-notifier-${version}";
|
|
|
|
|
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
|
|
|
};
|
|
|
|
|
2016-05-04 10:08:35 +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
|
2015-08-27 00:05:29 +00:00
|
|
|
cat >$out/bin/terminal-notifier <<EOF
|
2019-02-26 11:45:54 +00:00
|
|
|
#!${runtimeShell}
|
2015-08-27 00:05:29 +00:00
|
|
|
cd $out/Applications/terminal-notifier.app
|
2015-11-16 21:29:13 +00:00
|
|
|
exec ./Contents/MacOS/terminal-notifier "\$@"
|
2015-08-27 00:05:29 +00:00
|
|
|
EOF
|
|
|
|
chmod +x $out/bin/terminal-notifier
|
2015-01-26 01:39:46 +00:00
|
|
|
'';
|
|
|
|
|
|
|
|
meta = with lib; {
|
|
|
|
maintainers = with maintainers; [ cstrahan ];
|
2018-09-01 12:21:53 +00:00
|
|
|
homepage = https://github.com/julienXX/terminal-notifier;
|
|
|
|
license = licenses.mit;
|
|
|
|
platforms = platforms.darwin;
|
2015-01-26 01:39:46 +00:00
|
|
|
};
|
|
|
|
}
|