about summary refs log tree commit diff
path: root/pkgs/applications/video/mpv/scripts/memo.nix
blob: 5361b796268e1f22ec2a627e89d3294b99b9887c (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
{ 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 = "A recent files menu for mpv";
    homepage = "https://github.com/po5/memo";
    license = licenses.gpl3Only;
    maintainers = with lib.maintainers; [ purrpurrn ];
  };
}