electron-chromedriver_33: 33.3.0 -> 33.3.1
[NixPkgs.git] / pkgs / applications / video / mpv / scripts / evafast.nix
blob5260adb1a8efdcf7d0b4a2887e1cda20d54b76bd
2   fetchFromGitHub,
3   buildLua,
4   lib,
5   unstableGitUpdater,
6 }:
8 buildLua {
9   pname = "evafast";
10   version = "0-unstable-2024-02-09";
12   src = fetchFromGitHub {
13     owner = "po5";
14     repo = "evafast";
15     rev = "92af3e2e1c756ce83f9d0129c780caeef1131a0b";
16     hash = "sha256-BGWD2XwVu8zOSiDJ+9oWi8aPN2Wkw0Y0gF58X4f+tdI=";
17   };
19   # Drop the `branch` parameter once upstream merges `rewrite` back into `master`
20   passthru.updateScript = unstableGitUpdater { branch = "rewrite"; };
22   meta = with lib; {
23     description = "Seeking and hybrid fastforwarding like VHS";
24     homepage = "https://github.com/po5/evafast";
25     license = licenses.unfree; # no license; see https://github.com/po5/evafast/issues/15
26     maintainers = with lib.maintainers; [ purrpurrn ];
27   };