depot/pkgs/applications/video/mpv/scripts/manga-reader.nix
Luke Granger-Brown 57725ef3ec Squashed 'third_party/nixpkgs/' content from commit 76612b17c0ce
git-subtree-dir: third_party/nixpkgs
git-subtree-split: 76612b17c0ce71689921ca12d9ffdc9c23ce40b2
2024-11-10 23:59:47 +00:00

29 lines
732 B
Nix

{
lib,
fetchFromGitHub,
unstableGitUpdater,
buildLua,
}:
buildLua rec {
pname = "manga-reader";
version = "0-unstable-2024-07-05";
src = fetchFromGitHub {
owner = "Dudemanguy";
repo = "mpv-manga-reader";
rev = "fb06931eed4092fa74a98266cd04fa507ea63e13";
hash = "sha256-xtzDHv+zW/9LsLWo4Km7OQ05BVJlwqu9461i9ee94lM=";
};
passthru.updateScript = unstableGitUpdater { };
meta = {
description = "Manga reading script for mpv";
longDescription = ''
mpv-manga-reader is a script aimed at making mpv a usable manga reader.
'';
homepage = "https://github.com/Dudemanguy/mpv-manga-reader";
license = lib.licenses.gpl3;
maintainers = with lib.maintainers; [ idlip ];
};
}