Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at devShellTools-shell 27 lines 583 B view raw
1{ 2 fetchFromGitHub, 3 buildLua, 4 lib, 5 unstableGitUpdater, 6}: 7 8buildLua { 9 pname = "memo"; 10 version = "0-unstable-2024-09-03"; 11 12 src = fetchFromGitHub { 13 owner = "po5"; 14 repo = "memo"; 15 rev = "e0624611438b2e19ef4b7e24f53461c9d0304b07"; 16 hash = "sha256-6+fI3TdBDfKcozxLcsykavgi17ywqRRhyiMK7PgAzGs="; 17 }; 18 19 passthru.updateScript = unstableGitUpdater { }; 20 21 meta = with lib; { 22 description = "Recent files menu for mpv"; 23 homepage = "https://github.com/po5/memo"; 24 license = licenses.gpl3Only; 25 maintainers = with lib.maintainers; [ purrpurrn ]; 26 }; 27}