Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)

mpvScripts.mpv-subtitle-lines: init at 0-unstable-2024-05-19

authored by purrpurrn and committed by Colin ed15cbbf 96b329f8

+28
+1
pkgs/applications/video/mpv/scripts/default.nix
··· 117 117 mpv-osc-tethys = callPackage ./mpv-osc-tethys.nix { }; 118 118 mpv-playlistmanager = callPackage ./mpv-playlistmanager.nix { }; 119 119 mpv-slicing = callPackage ./mpv-slicing.nix { }; 120 + mpv-subtitle-lines = callPackage ./mpv-subtitle-lines.nix { }; 120 121 mpv-webm = callPackage ./mpv-webm.nix { }; 121 122 mpvacious = callPackage ./mpvacious.nix { }; 122 123 quack = callPackage ./quack.nix { };
+27
pkgs/applications/video/mpv/scripts/mpv-subtitle-lines.nix
··· 1 + { 2 + fetchFromGitHub, 3 + buildLua, 4 + lib, 5 + unstableGitUpdater, 6 + }: 7 + 8 + buildLua { 9 + pname = "mpv-subtitle-lines"; 10 + version = "0-unstable-2024-05-19"; 11 + 12 + src = fetchFromGitHub { 13 + owner = "christoph-heinrich"; 14 + repo = "mpv-subtitle-lines"; 15 + rev = "f0a85c7ba3370b490c46a77dcb2e212c0b149a50"; 16 + hash = "sha256-m9LHIz/hAOEq0DzHY3Jd1LM1cfxZng6Iaqrug1PfnAE="; 17 + }; 18 + 19 + passthru.updateScript = unstableGitUpdater { }; 20 + 21 + meta = { 22 + description = "List and search subtitle lines of the selected subtitle track"; 23 + homepage = "https://github.com/christoph-heinrich/mpv-subtitle-lines"; 24 + license = lib.licenses.gpl2Only; 25 + maintainers = with lib.maintainers; [ purrpurrn ]; 26 + }; 27 + }