nixpkgs/pkgs/applications/misc/dunst
Thiago Kenji Okada b83961d3f0 dunst: wrap dunstctl command with its runtime dependencies
Running `dunstctl` with `PATH` unset currently results in:

```
$ env PATH= ./result/bin/dunstctl is-paused
Command dbus-send not found
```

This is because `dunstctl` is a script that uses `dbus-send` and `cat`
during runtime. With this commit `dunstctl` works correctly even with
`PATH` unset:

```
$ env PATH= ./result/bin/dunstctl is-paused
false
```
2023-05-19 08:02:40 -03:00
..
default.nix dunst: wrap dunstctl command with its runtime dependencies 2023-05-19 08:02:40 -03:00