diff options
Diffstat (limited to '')
| -rw-r--r-- | pkgs/by-name/no/notify-run/package.nix | 9 |
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; |
