nix/pkgs/mpv-skipsilence.nix
2024-02-12 14:16:58 +00:00

24 lines
606 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-r5xrrTV4K/0kYGWAlL5rSYcIhTMPsVg+cZ2uaEjC/F8=";
};
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 = [ ];
};
}