about summary refs log tree commit diff
path: root/pkgs/applications/video/mpv/scripts/mpv-webm.nix
blob: e2411264c7b5d04c1861890a7f1bf2de38e48143 (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
, buildLua
, fetchFromGitHub
, luaPackages
, unstableGitUpdater
}:

buildLua {
  pname = "mpv-webm";
  version = "unstable-2024-04-22";

  src = fetchFromGitHub {
    owner = "ekisu";
    repo = "mpv-webm";
    rev = "225e8e53842f7da6f77034309c1e54293dc629a4";
    hash = "sha256-82xWiuOChxfzX6e0+cGFxTqyuiPefyVwpvLM5ka7nPk=";
  };
  passthru.updateScript = unstableGitUpdater {};

  dontBuild = false;
  nativeBuildInputs = [ luaPackages.moonscript ];
  scriptPath = "build/webm.lua";

  meta = with lib; {
    description = "Simple WebM maker for mpv, with no external dependencies";
    homepage = "https://github.com/ekisu/mpv-webm";
    license = licenses.mit;
    platforms = platforms.all;
    maintainers = with maintainers; [ pbsds ];
  };
}