mpvScripts.autoload: init at 2019-02-15

gstqt5
dawidsowa 2020-05-16 23:23:35 +02:00
parent 32b8ed7380
commit 59e1c16030
2 changed files with 21 additions and 0 deletions

View File

@ -0,0 +1,20 @@
{ stdenv, fetchurl, mpv-unwrapped, lib }:
stdenv.mkDerivation rec {
pname = "mpv-autoload";
version = mpv-unwrapped.version;
src = "${mpv-unwrapped.src.outPath}/TOOLS/lua/autoload.lua";
dontBuild = true;
dontUnpack = true;
installPhase = ''
install -Dm644 ${src} $out/share/mpv/scripts/autoload.lua
'';
passthru.scriptName = "autoload.lua";
meta = {
description = "This script automatically loads playlist entries before and after the the currently played file";
homepage = "https://github.com/mpv-player/mpv/blob/master/TOOLS/lua/autoload.lua";
maintainers = [ lib.maintainers.dawidsowa ];
license = lib.licenses.gpl2Plus;
};
}

View File

@ -20836,6 +20836,7 @@ in
mpv-with-scripts = callPackage ../applications/video/mpv/wrapper.nix { };
mpvScripts = recurseIntoAttrs {
autoload = callPackage ../applications/video/mpv/scripts/autoload.nix {};
convert = callPackage ../applications/video/mpv/scripts/convert.nix {};
mpris = callPackage ../applications/video/mpv/scripts/mpris.nix {};
};