From 00d82af612f3d014e25e5955c74fa16cfdfe15c8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Robert=20Sch=C3=BCtz?= Date: Thu, 20 May 2021 14:47:29 +0200 Subject: [PATCH] zulip-term: add notify-send to $PATH --- .../networking/instant-messengers/zulip-term/default.nix | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/pkgs/applications/networking/instant-messengers/zulip-term/default.nix b/pkgs/applications/networking/instant-messengers/zulip-term/default.nix index 77935b30f06..e97ea7bb65f 100644 --- a/pkgs/applications/networking/instant-messengers/zulip-term/default.nix +++ b/pkgs/applications/networking/instant-messengers/zulip-term/default.nix @@ -2,6 +2,7 @@ , python3 , fetchFromGitHub , glibcLocales +, libnotify }: python3.pkgs.buildPythonApplication rec { @@ -39,6 +40,10 @@ python3.pkgs.buildPythonApplication rec { pytest-mock ]); + makeWrapperArgs = [ + "--prefix" "PATH" ":" (lib.makeBinPath [ libnotify ]) + ]; + meta = with lib; { description = "Zulip's official terminal client"; homepage = "https://github.com/zulip/zulip-terminal";