lol
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

at 22.05-pre 20 lines 669 B view raw
1{ stdenvNoCC, mpv-unwrapped, lib }: 2 3stdenvNoCC.mkDerivation rec { 4 pname = "mpv-autoload"; 5 version = mpv-unwrapped.version; 6 src = "${mpv-unwrapped.src.outPath}/TOOLS/lua/autoload.lua"; 7 dontBuild = true; 8 dontUnpack = true; 9 installPhase = '' 10 install -Dm644 ${src} $out/share/mpv/scripts/autoload.lua 11 ''; 12 passthru.scriptName = "autoload.lua"; 13 14 meta = { 15 description = "This script automatically loads playlist entries before and after the the currently played file"; 16 homepage = "https://github.com/mpv-player/mpv/blob/master/TOOLS/lua/autoload.lua"; 17 maintainers = [ lib.maintainers.dawidsowa ]; 18 license = lib.licenses.gpl2Plus; 19 }; 20}