mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-22 06:53:01 +00:00
mpvScripts.mpv-subtitle-lines: init at 0-unstable-2024-05-19 (#334694)
This commit is contained in:
commit
ff377cce50
@ -117,6 +117,7 @@ let
|
||||
mpv-osc-tethys = callPackage ./mpv-osc-tethys.nix { };
|
||||
mpv-playlistmanager = callPackage ./mpv-playlistmanager.nix { };
|
||||
mpv-slicing = callPackage ./mpv-slicing.nix { };
|
||||
mpv-subtitle-lines = callPackage ./mpv-subtitle-lines.nix { };
|
||||
mpv-webm = callPackage ./mpv-webm.nix { };
|
||||
mpvacious = callPackage ./mpvacious.nix { };
|
||||
quack = callPackage ./quack.nix { };
|
||||
|
27
pkgs/applications/video/mpv/scripts/mpv-subtitle-lines.nix
Normal file
27
pkgs/applications/video/mpv/scripts/mpv-subtitle-lines.nix
Normal file
@ -0,0 +1,27 @@
|
||||
{
|
||||
fetchFromGitHub,
|
||||
buildLua,
|
||||
lib,
|
||||
unstableGitUpdater,
|
||||
}:
|
||||
|
||||
buildLua {
|
||||
pname = "mpv-subtitle-lines";
|
||||
version = "0-unstable-2024-05-19";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "christoph-heinrich";
|
||||
repo = "mpv-subtitle-lines";
|
||||
rev = "f0a85c7ba3370b490c46a77dcb2e212c0b149a50";
|
||||
hash = "sha256-m9LHIz/hAOEq0DzHY3Jd1LM1cfxZng6Iaqrug1PfnAE=";
|
||||
};
|
||||
|
||||
passthru.updateScript = unstableGitUpdater { };
|
||||
|
||||
meta = {
|
||||
description = "List and search subtitle lines of the selected subtitle track";
|
||||
homepage = "https://github.com/christoph-heinrich/mpv-subtitle-lines";
|
||||
license = lib.licenses.gpl2Only;
|
||||
maintainers = with lib.maintainers; [ purrpurrn ];
|
||||
};
|
||||
}
|
Loading…
Reference in New Issue
Block a user