depot/third_party/nixpkgs/pkgs/applications/video/mpv/scripts/memo.nix
Default email bcb2f287e1 Project import generated by Copybara.
GitOrigin-RevId: d603719ec6e294f034936c0d0dc06f689d91b6c3
2024-06-20 20:27:18 +05:30

27 lines
583 B
Nix

{
fetchFromGitHub,
buildLua,
lib,
unstableGitUpdater,
}:
buildLua {
pname = "memo";
version = "0-unstable-2023-10-31";
src = fetchFromGitHub {
owner = "po5";
repo = "memo";
rev = "6f2b036ef860e130ea584657389e0a7ceb4d954f";
hash = "sha256-m8ikXuw7PM4Btg8w7ufLneKA4fnYjMyfVJYueZILMw8=";
};
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 ];
};
}