depot/third_party/nixpkgs/pkgs/applications/video/mpv/scripts/mpv-notify-send.nix
Default email bcb2f287e1 Project import generated by Copybara.
GitOrigin-RevId: d603719ec6e294f034936c0d0dc06f689d91b6c3
2024-06-20 20:27:18 +05:30

45 lines
1.1 KiB
Nix

{
lib,
buildLua,
fetchFromGitHub,
fetchpatch,
unstableGitUpdater,
libnotify,
}:
buildLua rec {
pname = "mpv-notify-send";
version = "0-unstable-2020-02-24";
src = fetchFromGitHub {
owner = "emilazy";
repo = pname;
rev = "a2bab8b2fd8e8d14faa875b5cc3a73f1276cd88a";
sha256 = "sha256-EwVkhyB87TJ3i9xJmmZMSTMUKvfbImI1S+y1vgRWbDk=";
};
patches = [
# show title of online videos instead of url
(fetchpatch {
name = "6.patch"; # https://github.com/emilazy/mpv-notify-send/pull/6
url = "https://github.com/emilazy/mpv-notify-send/commit/948347e14890e15e89cd1e069beb1140e2d01dce.patch";
hash = "sha256-7aXQ8qeqG4yX0Uyn09xCIESnwPZsb6Frd7C49XgbpFw=";
})
];
passthru.extraWrapperArgs = [
"--prefix"
"PATH"
":"
(lib.makeBinPath libnotify)
];
passthru.updateScript = unstableGitUpdater { };
meta = with lib; {
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 ];
};
}