Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at devShellTools-shell 24 lines 563 B view raw
1{ 2 lib, 3 buildLua, 4 fetchFromGitHub, 5 unstableGitUpdater, 6}: 7buildLua { 8 pname = "visualizer"; 9 version = "0-unstable-2025-04-12"; 10 11 src = fetchFromGitHub { 12 owner = "mfcc64"; 13 repo = "mpv-scripts"; 14 rev = "bf6776f5c3dae8d83ba29b820496af89dc436613"; 15 sha256 = "9ApUBXjH4TKPP4P/fUXSNYbJu2AH6HBYt+1K+sHB7yE="; 16 }; 17 passthru.updateScript = unstableGitUpdater { }; 18 19 meta = with lib; { 20 description = "Various audio visualization"; 21 homepage = "https://github.com/mfcc64/mpv-scripts"; 22 maintainers = with maintainers; [ kmein ]; 23 }; 24}