504525a148
GitOrigin-RevId: bd645e8668ec6612439a9ee7e71f7eac4099d4f6
43 lines
1,015 B
Nix
43 lines
1,015 B
Nix
{ lib
|
|
, buildLua
|
|
, fetchFromGitHub
|
|
, curl
|
|
, wl-clipboard
|
|
, xclip
|
|
}:
|
|
|
|
buildLua rec {
|
|
pname = "mpvacious";
|
|
version = "0.25";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "Ajatt-Tools";
|
|
repo = "mpvacious";
|
|
rev = "v${version}";
|
|
sha256 = "sha256-XTnib4cguWFEvZtmsLfkesbjFbkt2YoyYLT587ajyUM=";
|
|
};
|
|
|
|
postPatch = ''
|
|
substituteInPlace utils/forvo.lua \
|
|
--replace "'curl" "'${curl}/bin/curl"
|
|
substituteInPlace platform/nix.lua \
|
|
--replace "'curl" "'${curl}/bin/curl" \
|
|
--replace "'wl-copy" "'${wl-clipboard}/bin/wl-copy" \
|
|
--replace "'xclip" "'${xclip}/bin/xclip"
|
|
'';
|
|
|
|
installPhase = ''
|
|
runHook preInstall
|
|
make PREFIX=$out/share/mpv install
|
|
runHook postInstall
|
|
'';
|
|
|
|
passthru.scriptName = "mpvacious";
|
|
|
|
meta = with lib; {
|
|
description = "Adds mpv keybindings to create Anki cards from movies and TV shows";
|
|
homepage = "https://github.com/Ajatt-Tools/mpvacious";
|
|
license = licenses.gpl3Plus;
|
|
maintainers = with maintainers; [ kmicklas ];
|
|
};
|
|
}
|