Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at devShellTools-shell 29 lines 728 B view raw
1{ 2 lib, 3 fetchFromGitHub, 4 unstableGitUpdater, 5 buildLua, 6}: 7 8buildLua { 9 pname = "manga-reader"; 10 11 version = "0-unstable-2025-07-15"; 12 src = fetchFromGitHub { 13 owner = "Dudemanguy"; 14 repo = "mpv-manga-reader"; 15 rev = "bb4ec1208feb440ce430f0963373ab2db5b7d743"; 16 hash = "sha256-Zz2rPnnQHz2BqCM3jEJD/FuFLKtiNGWvAZpiH7jyLmo="; 17 }; 18 passthru.updateScript = unstableGitUpdater { }; 19 20 meta = { 21 description = "Manga reading script for mpv"; 22 longDescription = '' 23 mpv-manga-reader is a script aimed at making mpv a usable manga reader. 24 ''; 25 homepage = "https://github.com/Dudemanguy/mpv-manga-reader"; 26 license = lib.licenses.gpl3; 27 maintainers = with lib.maintainers; [ idlip ]; 28 }; 29}