about summary refs log tree commit diff
path: root/pkgs/applications/video/mpv/scripts/occivink.nix
blob: be3bdb07db8da5fcdb6e52e0e75cdd882f3630e8 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
{ lib
, fetchFromGitHub
, unstableGitUpdater
, buildLua
}:

let
  camelToKebab = let
    inherit (lib.strings) match stringAsChars toLower;
    isUpper = match "[A-Z]";
  in stringAsChars (c: if isUpper c != null then "-${toLower c}" else c);

  mkScript = name: args:
    let self = rec {
      pname = camelToKebab name;
      version = "0-unstable-2024-01-11";
      src = fetchFromGitHub {
        owner = "occivink";
        repo = "mpv-scripts";
        rev = "d0390c8e802c2e888ff4a2e1d5e4fb040f855b89";
        hash = "sha256-pc2aaO7lZaoYMEXv5M0WI7PtmqgkNbdtNiLZZwVzppM=";
      };
      passthru.updateScript = unstableGitUpdater {};

      scriptPath = "scripts/${pname}.lua";

      meta = with lib; {
        homepage = "https://github.com/occivink/mpv-scripts";
        license = licenses.unlicense;
        maintainers = with maintainers; [ nicoo ];
      };

      # Sadly needed to make `common-updaters` work here
      pos = builtins.unsafeGetAttrPos "version" self;
    };
    in buildLua (lib.attrsets.recursiveUpdate self args);

in
lib.mapAttrs (name: lib.makeOverridable (mkScript name)) {

  # Usage: `pkgs.mpv.override { scripts = [ pkgs.mpvScripts.seekTo ]; }`
  seekTo.meta.description = "Mpv script for seeking to a specific position";
  blacklistExtensions.meta.description =
    "Automatically remove playlist entries based on their extension.";
}