biglybt: 3.5.0.0 -> 3.6.0.0
[NixPkgs.git] / pkgs / applications / video / mpv / scripts / mpv-webm.nix
blob5645d6a65f6bf0a49cf7e02e77b14f7e39694b1d
1 { lib
2 , buildLua
3 , fetchFromGitHub
4 , luaPackages
5 , unstableGitUpdater
6 }:
8 buildLua {
9   pname = "mpv-webm";
10   version = "unstable-2023-11-18";
12   src = fetchFromGitHub {
13     owner = "ekisu";
14     repo = "mpv-webm";
15     rev = "6b5863f68275b3dc91c2507284c039ec8a4cbd97";
16     hash = "sha256-rJamBm6FyxWcJO7VXXOUTO9piWCkPfEVdqGKGeJ/h0c=";
17   };
18   passthru.updateScript = unstableGitUpdater {};
20   dontBuild = false;
21   nativeBuildInputs = [ luaPackages.moonscript ];
22   scriptPath = "build/webm.lua";
24   meta = with lib; {
25     description = "Simple WebM maker for mpv, with no external dependencies";
26     homepage = "https://github.com/ekisu/mpv-webm";
27     license = licenses.mit;
28     platforms = platforms.all;
29     maintainers = with maintainers; [ pbsds ];
30   };