biglybt: 3.5.0.0 -> 3.6.0.0
[NixPkgs.git] / pkgs / applications / video / mpv / scripts / thumbfast.nix
blob7336fbe35dad82fc922fd13140600e69960c7cdd
1 { lib, fetchFromGitHub, unstableGitUpdater, buildLua, mpv-unwrapped }:
3 buildLua {
4   pname = "mpv-thumbfast";
5   version = "unstable-2023-12-08";
7   src = fetchFromGitHub {
8     owner = "po5";
9     repo = "thumbfast";
10     rev = "03e93feee5a85bf7c65db953ada41b4826e9f905";
11     hash = "sha256-5u5WBvWOEydJrnr/vilEgW4+fxkxM6wNjb9Fyyxx/1c=";
12   };
13   passthru.updateScript = unstableGitUpdater {};
15   passthru.extraWrapperArgs = [
16     "--prefix" "PATH" ":" "${lib.getBin mpv-unwrapped}/bin"
17   ];
19   meta = {
20     description = "High-performance on-the-fly thumbnailer for mpv";
21     homepage = "https://github.com/po5/thumbfast";
22     license = lib.licenses.mpl20;
23     maintainers = with lib.maintainers; [ apfelkuchen6 ];
24   };