aboutsummaryrefslogtreecommitdiff
path: root/nixpkgs/pkgs/applications/video/mpv/scripts/autoload.nix
diff options
context:
space:
mode:
Diffstat (limited to 'nixpkgs/pkgs/applications/video/mpv/scripts/autoload.nix')
-rw-r--r--nixpkgs/pkgs/applications/video/mpv/scripts/autoload.nix20
1 files changed, 20 insertions, 0 deletions
diff --git a/nixpkgs/pkgs/applications/video/mpv/scripts/autoload.nix b/nixpkgs/pkgs/applications/video/mpv/scripts/autoload.nix
new file mode 100644
index 00000000000..f64e702f21c
--- /dev/null
+++ b/nixpkgs/pkgs/applications/video/mpv/scripts/autoload.nix
@@ -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;
+ };
+}