From f003a26a14d71eb7b7ec21f49842ed006ce69793 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=A9clairevoyant?= <848000+eclairevoyant@users.noreply.github.com> Date: Thu, 29 Aug 2024 09:16:10 -0400 Subject: [PATCH] mpvScripts.mpv-notify-send: modernise --- .../applications/video/mpv/scripts/mpv-notify-send.nix | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/pkgs/applications/video/mpv/scripts/mpv-notify-send.nix b/pkgs/applications/video/mpv/scripts/mpv-notify-send.nix index 523914543900..4bc2bedde8f4 100644 --- a/pkgs/applications/video/mpv/scripts/mpv-notify-send.nix +++ b/pkgs/applications/video/mpv/scripts/mpv-notify-send.nix @@ -13,9 +13,9 @@ buildLua rec { src = fetchFromGitHub { owner = "emilazy"; - repo = pname; + repo = "mpv-notify-send"; rev = "a2bab8b2fd8e8d14faa875b5cc3a73f1276cd88a"; - sha256 = "sha256-EwVkhyB87TJ3i9xJmmZMSTMUKvfbImI1S+y1vgRWbDk="; + hash = "sha256-EwVkhyB87TJ3i9xJmmZMSTMUKvfbImI1S+y1vgRWbDk="; }; patches = [ @@ -36,10 +36,10 @@ buildLua rec { passthru.updateScript = unstableGitUpdater { }; - meta = with lib; { + meta = { description = "Lua script for mpv to send notifications with notify-send"; homepage = "https://github.com/emilazy/mpv-notify-send"; - license = licenses.wtfpl; - maintainers = with maintainers; [ r3n3gad3p3arl ]; + license = lib.licenses.wtfpl; + maintainers = with lib.maintainers; [ r3n3gad3p3arl ]; }; }