2024-01-02 11:29:13 +00:00
|
|
|
{ lib, buildLua
|
2020-06-18 07:06:33 +00:00
|
|
|
, fetchFromGitHub }:
|
2024-01-02 11:29:13 +00:00
|
|
|
buildLua rec {
|
2020-06-18 07:06:33 +00:00
|
|
|
pname = "simple-mpv-ui";
|
2024-01-02 11:29:13 +00:00
|
|
|
version = "3.0.0";
|
2020-06-18 07:06:33 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "open-dynaMIX";
|
|
|
|
repo = "simple-mpv-webui";
|
|
|
|
rev = "v${version}";
|
2024-01-02 11:29:13 +00:00
|
|
|
hash = "sha256-I8lwpo3Hfpy3UnPMmHEJCdArVQnNL245NkxsYVmnMF0=";
|
|
|
|
sparseCheckout = [ "main.lua" "webui-page" ];
|
2020-06-18 07:06:33 +00:00
|
|
|
};
|
|
|
|
|
2024-01-02 11:29:13 +00:00
|
|
|
scriptPath = ".";
|
|
|
|
passthru.scriptName = "webui";
|
2020-06-18 07:06:33 +00:00
|
|
|
|
2021-01-15 22:18:51 +00:00
|
|
|
meta = with lib; {
|
2020-06-18 07:06:33 +00:00
|
|
|
description = "A web based user interface with controls for the mpv mediaplayer";
|
|
|
|
homepage = "https://github.com/open-dynaMIX/simple-mpv-webui";
|
2021-08-05 21:33:18 +00:00
|
|
|
maintainers = with maintainers; [ cript0nauta zopieux ];
|
2020-06-18 07:06:33 +00:00
|
|
|
longDescription = ''
|
|
|
|
You can access the webui when accessing http://127.0.0.1:8080 or
|
|
|
|
http://[::1]:8080 in your webbrowser. By default it listens on
|
|
|
|
0.0.0.0:8080 and [::0]:8080
|
|
|
|
'';
|
|
|
|
license = licenses.mit;
|
|
|
|
};
|
|
|
|
}
|