biglybt: 3.5.0.0 -> 3.6.0.0
[NixPkgs.git] / pkgs / applications / video / mpv / scripts / mpv.nix
blob06e9ccb4d74a824ab855282f104282061e459537
1 { lib
2 , buildLua
3 , mpv-unwrapped
4 }:
6 let mkBuiltin = name: args:
7   let srcPath = "TOOLS/lua/${name}.lua";
8   in buildLua (lib.attrsets.recursiveUpdate rec {
9     inherit (mpv-unwrapped) src version;
10     pname = "mpv-${name}";
12     dontUnpack = true;
13     scriptPath = "${src}/${srcPath}";
15     meta = with lib; {
16       inherit (mpv-unwrapped.meta) license;
17       homepage = "https://github.com/mpv-player/mpv/blob/v${version}/${srcPath}";
18     };
19   } args);
21 in lib.mapAttrs (name: lib.makeOverridable (mkBuiltin name)) {
22   acompressor.meta = {
23     description = "Script to toggle and control ffmpeg's dynamic range compression filter.";
24     maintainers = with lib.maintainers; [ nicoo ];
25   };
27   autocrop.meta.description = "This script uses the lavfi cropdetect filter to automatically insert a crop filter with appropriate parameters for the currently playing video.";
29   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.";
31   autoload.meta = {
32     description = "This script automatically loads playlist entries before and after the currently played file";
33     maintainers = [ lib.maintainers.dawidsowa ];
34   };