Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
28 lines
630 B
Nix
28 lines
630 B
Nix
{
|
|
lib,
|
|
fetchFromGitHub,
|
|
unstableGitUpdater,
|
|
buildLua,
|
|
}:
|
|
|
|
buildLua {
|
|
pname = "mpv-skipsilence";
|
|
version = "0-unstable-2025-09-06";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "ferreum";
|
|
repo = "mpv-skipsilence";
|
|
rev = "75e1334e513682f0ece6790c614c1fcbd82257cc";
|
|
hash = "sha256-XmrVZRJAQctIiuznw/fQzs+9+QKOyTnJI2JOEWBWnVA=";
|
|
};
|
|
|
|
passthru.updateScript = unstableGitUpdater { };
|
|
|
|
meta = {
|
|
description = "Increase playback speed during silence";
|
|
homepage = "https://github.com/ferreum/mpv-skipsilence";
|
|
license = lib.licenses.gpl2Only;
|
|
maintainers = with lib.maintainers; [ mksafavi ];
|
|
};
|
|
}
|