about summary refs log tree commit diff
path: root/pkgs/applications/video/mpv/scripts/chapterskip.nix
blob: c147da8d459845481ed5af0ac3fa5150b7fdde3f (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
25
26
27
28
29
30
31
{ lib
, fetchFromGitHub
, nix-update-script
, stdenvNoCC }:

stdenvNoCC.mkDerivation {
  pname = "chapterskip";
  passthru.scriptName = "chapterskip.lua";

  version = "unstable-2022-09-08";
  src = fetchFromGitHub {
    owner = "po5";
    repo  = "chapterskip";
    rev   = "b26825316e3329882206ae78dc903ebc4613f039";
    hash  = "sha256-OTrLQE3rYvPQamEX23D6HttNjx3vafWdTMxTiWpDy90=";
  };

  dontBuild = true;
  preferLocalBuild = true;
  installPhase = "install -Dt $out/share/mpv/scripts chapterskip.lua";

  passthru.updateScript = nix-update-script {
    extraArgs = [ "--version=branch" ];
  };

  meta = with lib; {
    homepage = "https://github.com/po5/chapterskip";
    platforms = platforms.all;
    maintainers = with maintainers; [ nicoo ];
  };
}