{ lib, rustPlatform, fetchFromGitHub, nix-update-script, }: rustPlatform.buildRustPackage (finalAttrs: { pname = "nu_plugin_desktop_notifications"; version = "0.110.0"; src = fetchFromGitHub { owner = "FMotalleb"; repo = "nu_plugin_desktop_notifications"; tag = "v${finalAttrs.version}"; hash = "sha256-jd4T0+id/1rpjOWuzqbqxnyvmoe4LCiYux/dJlO3F6c="; }; cargoHash = "sha256-7ZiQr8RBQCNQK3/tLasilZcu+HWp066iDFI67L8iZMg="; passthru.updateScript = nix-update-script { }; meta = { description = "Nushell plugin for sending desktop notifications"; mainProgram = "nu_plugin_desktop_notifications"; homepage = "https://github.com/FMotalleb/nu_plugin_desktop_notifications"; license = lib.licenses.mit; maintainers = with lib.maintainers; [ timon ]; platforms = lib.platforms.linux; }; })