mpvScripts.modernx: init at 0.2.4

This commit is contained in:
Guanran Wang 2024-01-16 10:36:17 +08:00
parent 350947e1d4
commit 698b5d49b5
Signed by: nyancat
SSH key fingerprint: SHA256:8oWGKciPALWut/6WA27oFKofX+6Wtc0gQnsefXLQx/8
2 changed files with 40 additions and 0 deletions

View file

@ -1,3 +1,4 @@
pkgs: { pkgs: {
metacubexd = pkgs.callPackage ./metacubexd {}; metacubexd = pkgs.callPackage ./metacubexd {};
mpvScripts.modernx = pkgs.callPackage ./mpvScripts/modernx {};
} }

View file

@ -0,0 +1,39 @@
{
lib,
stdenvNoCC,
fetchFromGitHub,
}:
# TODO: use buildLua
# error: evaluation aborted with the following error message: 'lib.customisation.callPackageWith: Function called without required argument "buildLua"
stdenvNoCC.mkDerivation rec {
pname = "modernx";
version = "0.2.4";
# zydezu's fork
src = fetchFromGitHub {
owner = "zydezu";
repo = "ModernX";
rev = version;
hash = "sha256-b5dJeJ5GPEKhyznYIAQ3YzUq01rYUhDbci1ilNuXrdk=";
};
dontConfigure = true;
dontBuild = true;
installPhase = ''
install -Dm644 modernx.lua $out/share/mpv/scripts/modernx.lua
# I dont know how to handle the font...
install -Dm644 Material-Design-Iconic-Font.ttf $out/share/mpv/fonts/Material-Design-Iconic-Font.ttf
install -Dm644 Material-Design-Iconic-Round.ttf $out/share/mpv/fonts/Material-Design-Iconic-Round.ttf
'';
passthru.scriptName = "modernx.lua";
meta = with lib; {
description = "A modern OSC UI replacement for MPV that retains the functionality of the default OSC. (@zydezu's fork)";
homepage = "https://github.com/zydezu/ModernX/";
license = licenses.gpl2; # https://github.com/maoiscat/mpv-osc-modern/issues/43
platforms = platforms.all;
};
}