Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
62 lines
1.0 KiB
Nix
62 lines
1.0 KiB
Nix
{
|
|
lib,
|
|
stdenv,
|
|
fetchFromGitHub,
|
|
cmake,
|
|
qt6,
|
|
wrapQtAppsHook,
|
|
|
|
# before that => zeal
|
|
sqlite,
|
|
json_c,
|
|
mecab,
|
|
libzip,
|
|
mpv,
|
|
yt-dlp,
|
|
# optional
|
|
makeWrapper,
|
|
}:
|
|
stdenv.mkDerivation (finalAttrs: {
|
|
pname = "memento";
|
|
version = "1.6.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "ripose-jp";
|
|
repo = "Memento";
|
|
rev = "v${finalAttrs.version}";
|
|
hash = "sha256-IvzvlToSyA20FWU0x+wgE3rT0dYbuY6xyaGgz1D1f6Q=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
cmake
|
|
makeWrapper
|
|
wrapQtAppsHook
|
|
];
|
|
|
|
buildInputs = [
|
|
qt6.qtbase
|
|
qt6.qtsvg
|
|
qt6.qtwayland
|
|
sqlite
|
|
json_c
|
|
libzip
|
|
mecab
|
|
];
|
|
|
|
propagatedBuildInputs = [ mpv ];
|
|
|
|
preFixup = ''
|
|
wrapProgram "$out/bin/memento" \
|
|
--prefix PATH : "${yt-dlp}/bin" \
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "Mpv-based video player for studying Japanese";
|
|
homepage = "https://ripose-jp.github.io/Memento/";
|
|
license = licenses.gpl2;
|
|
maintainers = with maintainers; [ teto ];
|
|
platforms = platforms.linux;
|
|
mainProgram = "memento";
|
|
};
|
|
})
|