about summary refs log tree commit diff
path: root/pkgs/applications/video/mpv/scripts/memo.nix
blob: 7795d1e7b9927284b2401729d2bc7294a3317150 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
{
  fetchFromGitHub,
  buildLua,
  lib,
  unstableGitUpdater,
}:

buildLua {
  pname = "memo";
  version = "0-unstable-2024-07-02";

  src = fetchFromGitHub {
    owner = "po5";
    repo = "memo";
    rev = "43ad5bc37d4ac63a00dd2a8f15b9028789467da7";
    hash = "sha256-nHJ1x5R4Rw2YjB3Li3ZFbI3ZdLSqddJFzJlni4NjpH0=";
  };

  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 ];
  };
}