Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at devShellTools-shell 27 lines 685 B view raw
1{ 2 fetchFromGitHub, 3 buildLua, 4 lib, 5 unstableGitUpdater, 6}: 7 8buildLua { 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}