bcb2f287e1
GitOrigin-RevId: d603719ec6e294f034936c0d0dc06f689d91b6c3
43 lines
989 B
Nix
43 lines
989 B
Nix
{
|
|
lib,
|
|
buildLua,
|
|
fetchFromGitHub,
|
|
makeFontsConf,
|
|
nix-update-script,
|
|
}:
|
|
buildLua (finalAttrs: {
|
|
pname = "modernx-zydezu";
|
|
version = "0.3.5.5";
|
|
|
|
scriptPath = "modernx.lua";
|
|
src = fetchFromGitHub {
|
|
owner = "zydezu";
|
|
repo = "ModernX";
|
|
rev = finalAttrs.version;
|
|
hash = "sha256-sPpVwI8w5JsP/jML0viOSqhyYBVKfxWuKbxHkX3GVug=";
|
|
};
|
|
|
|
postInstall = ''
|
|
mkdir -p $out/share/fonts
|
|
cp -r *.ttf $out/share/fonts
|
|
'';
|
|
passthru.extraWrapperArgs = [
|
|
"--set"
|
|
"FONTCONFIG_FILE"
|
|
(toString (makeFontsConf {
|
|
fontDirectories = [ "${finalAttrs.finalPackage}/share/fonts" ];
|
|
}))
|
|
];
|
|
|
|
passthru.updateScript = nix-update-script { };
|
|
|
|
meta = with lib; {
|
|
description = "Modern OSC UI replacement for MPV that retains the functionality of the default OSC";
|
|
homepage = "https://github.com/zydezu/ModernX";
|
|
license = licenses.lgpl21Plus;
|
|
maintainers = with maintainers; [
|
|
luftmensch-luftmensch
|
|
Guanran928
|
|
];
|
|
};
|
|
})
|