summary refs log tree commit diff
path: root/pkgs/applications/video/mpv/scripts/acompressor.nix
blob: d82d12f163e7f140f2e78e8464b3f79e9853b5b3 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
{ lib
, buildLua
, mpv-unwrapped
}:

buildLua {
  inherit (mpv-unwrapped) src version;
  pname = "mpv-acompressor";
  scriptPath = "TOOLS/lua/acompressor.lua";

  meta = with lib; {
    inherit (mpv-unwrapped.meta) license;
    description = "Script to toggle and control ffmpeg's dynamic range compression filter.";
    homepage = "https://github.com/mpv-player/mpv/blob/master/TOOLS/lua/acompressor.lua";
    maintainers = with maintainers; [ nicoo ];
  };
}