Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at devShellTools-shell 27 lines 630 B view raw
1{ 2 lib, 3 fetchFromGitHub, 4 unstableGitUpdater, 5 buildLua, 6}: 7 8buildLua { 9 pname = "mpv-skipsilence"; 10 version = "0-unstable-2024-05-06"; 11 12 src = fetchFromGitHub { 13 owner = "ferreum"; 14 repo = "mpv-skipsilence"; 15 rev = "5ae7c3b6f927e728c22fc13007265682d1ecf98c"; 16 hash = "sha256-fg8vfeb68nr0bTBIvr0FnRnoB48/kV957pn22tWcz1g="; 17 }; 18 19 passthru.updateScript = unstableGitUpdater { }; 20 21 meta = { 22 description = "Increase playback speed during silence"; 23 homepage = "https://github.com/ferreum/mpv-skipsilence"; 24 license = lib.licenses.gpl2Only; 25 maintainers = with lib.maintainers; [ mksafavi ]; 26 }; 27}