zulip-term: add notify-send to $PATH

This commit is contained in:
Robert Schütz 2021-05-20 14:47:29 +02:00 committed by Jonathan Ringer
parent 0761e0dfe1
commit 00d82af612

View File

@ -2,6 +2,7 @@
, python3 , python3
, fetchFromGitHub , fetchFromGitHub
, glibcLocales , glibcLocales
, libnotify
}: }:
python3.pkgs.buildPythonApplication rec { python3.pkgs.buildPythonApplication rec {
@ -39,6 +40,10 @@ python3.pkgs.buildPythonApplication rec {
pytest-mock pytest-mock
]); ]);
makeWrapperArgs = [
"--prefix" "PATH" ":" (lib.makeBinPath [ libnotify ])
];
meta = with lib; { meta = with lib; {
description = "Zulip's official terminal client"; description = "Zulip's official terminal client";
homepage = "https://github.com/zulip/zulip-terminal"; homepage = "https://github.com/zulip/zulip-terminal";