about summary refs log tree commit diff
path: root/pkgs/applications/video/mpv/scripts/visualizer.nix
blob: 332604286847a165c8320f6bb76771ceaa178862 (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
{
  lib,
  buildLua,
  fetchFromGitHub,
  unstableGitUpdater,
}:
buildLua {
  pname = "visualizer";
  version = "0-unstable-2024-03-10";

  src = fetchFromGitHub {
    owner = "mfcc64";
    repo = "mpv-scripts";
    rev = "b4246984ba6dc6820adef5c8bbf793af85c9ab8e";
    sha256 = "ZNUzw4OW7z+yGTxim7CCWJdWmihDFOQAQk3bC5Ijcbs=";
  };
  passthru.updateScript = unstableGitUpdater {};

  meta = with lib; {
    description = "various audio visualization";
    homepage = "https://github.com/mfcc64/mpv-scripts";
    maintainers = with maintainers; [kmein];
  };
}