depot/third_party/nixpkgs/pkgs/applications/video/mpv/scripts/occivink.nix
Default email 5c370c0b2a Project import generated by Copybara.
GitOrigin-RevId: 33d1e753c82ffc557b4a585c77de43d4c922ebb5
2024-05-15 17:35:15 +02:00

49 lines
1.4 KiB
Nix

{
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.";
}