nix/pkgs/mpv-skipsilence.nix
2024-04-20 17:56:05 +01:00

23 lines
608 B
Nix

{
lib,
buildLua,
fetchgit,
gitUpdater,
}:
buildLua rec {
pname = "mpv-skipsilence";
version = "1.0";
src = fetchgit {
url = "https://codeberg.org/ferreum/mpv-skipsilence.git";
hash = "sha256-aAzLegotOUILhpz7GcMJvCY4R3jSZCDIKOwVfM21kdY=";
};
passthru.updateScript = gitUpdater {};
meta = with lib; {
description = "Increase playback speed during silence - a revolution in attention-deficit induction technology.";
homepage = "https://github.com/ferreum/mpv-skipsilence";
license = licenses.unlicense; # actually they don't have a license
maintainers = [];
};
}