nixpkgs/pkgs/applications/video/mpv/scripts/modernx.nix
Alexis Hildebrandt 755b915a15 treewide: Remove indefinite article from meta.description
nix run nixpkgs#silver-searcher -- -G '\.nix$' -0l 'description.*"[Aa]n?' pkgs \
  | xargs -0 nix run nixpkgs#gnused -- -i '' -Ee 's/(description.*")[Aa]n? (.)/\1\U\2/'
2024-06-09 23:07:45 +02:00

41 lines
938 B
Nix

{
lib,
buildLua,
fetchFromGitHub,
makeFontsConf,
nix-update-script,
}:
buildLua (finalAttrs: {
pname = "modernx";
version = "0.6.1";
scriptPath = "modernx.lua";
src = fetchFromGitHub {
owner = "cyl0";
repo = "ModernX";
rev = finalAttrs.version;
hash = "sha256-q7DwyfmOIM7K1L7vvCpq1EM0RVpt9E/drhAa9rLYb1k=";
};
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/cyl0/ModernX";
license = licenses.lgpl21Plus;
maintainers = with maintainers; [ Guanran928 ];
};
})