mpvScripts: remove trailing period from meta.description

Note that long-term we should automate this since there have been a lot
of unintentional additions since https://github.com/NixOS/nixpkgs/pull/317959
This commit is contained in:
Donovan Glover 2024-08-10 16:35:58 -04:00
parent 52671145da
commit 55fea4ee8a
No known key found for this signature in database
GPG Key ID: EA7408A77AE1BE65
3 changed files with 7 additions and 7 deletions

View File

@ -19,7 +19,7 @@ buildLua {
passthru.updateScript = unstableGitUpdater { }; passthru.updateScript = unstableGitUpdater { };
meta = { meta = {
description = ''Script to "cropping" dynamically, hard-coded black bars detected with lavfi-cropdetect filter for Ultra Wide Screen or any screen (Smartphone/Tablet).''; description = ''Script to "cropping" dynamically, hard-coded black bars detected with lavfi-cropdetect filter for Ultra Wide Screen or any screen (Smartphone/Tablet)'';
homepage = "https://github.com/Ashyni/mpv-scripts"; homepage = "https://github.com/Ashyni/mpv-scripts";
license = lib.licenses.mit; license = lib.licenses.mit;
maintainers = [ lib.maintainers.iynaix ]; maintainers = [ lib.maintainers.iynaix ];

View File

@ -27,13 +27,13 @@ let
in in
lib.mapAttrs (name: lib.makeOverridable (mkBuiltin name)) { lib.mapAttrs (name: lib.makeOverridable (mkBuiltin name)) {
acompressor.meta = { acompressor.meta = {
description = "Script to toggle and control ffmpeg's dynamic range compression filter."; description = "Script to toggle and control ffmpeg's dynamic range compression filter";
maintainers = with lib.maintainers; [ nicoo ]; maintainers = with lib.maintainers; [ nicoo ];
}; };
autocrop.meta.description = "This script uses the lavfi cropdetect filter to automatically insert a crop filter with appropriate parameters for the currently playing video."; autocrop.meta.description = "This script uses the lavfi cropdetect filter to automatically insert a crop filter with appropriate parameters for the currently playing video";
autodeint.meta.description = "This script uses the lavfi idet filter to automatically insert the appropriate deinterlacing filter based on a short section of the currently playing video."; autodeint.meta.description = "This script uses the lavfi idet filter to automatically insert the appropriate deinterlacing filter based on a short section of the currently playing video";
autoload.meta = { autoload.meta = {
description = "This script automatically loads playlist entries before and after the currently played file"; description = "This script automatically loads playlist entries before and after the currently played file";

View File

@ -45,12 +45,12 @@ in
lib.mapAttrs (name: lib.makeOverridable (mkScript name)) { lib.mapAttrs (name: lib.makeOverridable (mkScript name)) {
# Usage: `pkgs.mpv.override { scripts = [ pkgs.mpvScripts.seekTo ]; }` # Usage: `pkgs.mpv.override { scripts = [ pkgs.mpvScripts.seekTo ]; }`
crop.meta.description = "Crop the current video in a visual manner."; crop.meta.description = "Crop the current video in a visual manner";
seekTo.meta.description = "Mpv script for seeking to a specific position"; seekTo.meta.description = "Mpv script for seeking to a specific position";
blacklistExtensions.meta.description = "Automatically remove playlist entries based on their extension."; blacklistExtensions.meta.description = "Automatically remove playlist entries based on their extension";
encode = { encode = {
meta.description = "Make an extract of the video currently playing using ffmpeg."; meta.description = "Make an extract of the video currently playing using ffmpeg";
postPatch = '' postPatch = ''
substituteInPlace scripts/encode.lua \ substituteInPlace scripts/encode.lua \