depot/pkgs/applications/video/mpv/scripts/memo.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

27 lines
583 B
Nix

{
fetchFromGitHub,
buildLua,
lib,
unstableGitUpdater,
}:
buildLua {
pname = "memo";
version = "0-unstable-2024-09-03";
src = fetchFromGitHub {
owner = "po5";
repo = "memo";
rev = "e0624611438b2e19ef4b7e24f53461c9d0304b07";
hash = "sha256-6+fI3TdBDfKcozxLcsykavgi17ywqRRhyiMK7PgAzGs=";
};
passthru.updateScript = unstableGitUpdater { };
meta = with lib; {
description = "Recent files menu for mpv";
homepage = "https://github.com/po5/memo";
license = licenses.gpl3Only;
maintainers = with lib.maintainers; [ purrpurrn ];
};
}