about summary refs log tree commit diff stats
path: root/pkgs/by-name/no/notify-run/package.nix
diff options
context:
space:
mode:
authorBenedikt Peetz <benedikt.peetz@b-peetz.de>2025-11-29 21:24:11 +0100
committerBenedikt Peetz <benedikt.peetz@b-peetz.de>2025-11-29 21:24:11 +0100
commit815d9d8bf57fa491fe062c7c839c60cdef5dffaf (patch)
treecd3fbd45c23141d425a0ea610073af136f95d6f5 /pkgs/by-name/no/notify-run/package.nix
parentpkgs/notify-run: Init (diff)
downloadnixos-config-815d9d8bf57fa491fe062c7c839c60cdef5dffaf.zip
modules/river/keymap: Send a notification, when spawning a command fails
Diffstat (limited to 'pkgs/by-name/no/notify-run/package.nix')
-rw-r--r--pkgs/by-name/no/notify-run/package.nix9
1 files changed, 8 insertions, 1 deletions
diff --git a/pkgs/by-name/no/notify-run/package.nix b/pkgs/by-name/no/notify-run/package.nix
index a5b0a1d7..7bf07c1a 100644
--- a/pkgs/by-name/no/notify-run/package.nix
+++ b/pkgs/by-name/no/notify-run/package.nix
@@ -7,11 +7,18 @@
 #
 # You should have received a copy of the License along with this program.
 # If not, see <https://www.gnu.org/licenses/gpl-3.0.txt>.
-{rustPlatform}:
+{
+  rustPlatform,
+  libnotify,
+}:
 rustPlatform.buildRustPackage {
   pname = "notify-run";
   version = "0.1.0";
 
+  buildInputs = [
+    libnotify
+  ];
+
   src = ./.;
   cargoLock = {
     lockFile = ./Cargo.lock;