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
74 lines
2.2 KiB
Nix
74 lines
2.2 KiB
Nix
{
|
|
lib,
|
|
anki-utils,
|
|
fetchFromGitHub,
|
|
python3,
|
|
nix-update-script,
|
|
}:
|
|
anki-utils.buildAnkiAddon (finalAttrs: {
|
|
pname = "local-audio-yomichan";
|
|
version = "0-unstable-2025-04-26";
|
|
src = fetchFromGitHub {
|
|
owner = "yomidevs";
|
|
repo = "local-audio-yomichan";
|
|
rev = "34750f1d8ca1cb473128fea7976a4d981e5e78a4";
|
|
sparseCheckout = [ "plugin" ];
|
|
hash = "sha256-2gyggcvxParay+1B7Sg2COKyocoxaRO1WTz+ymdRp4w=";
|
|
};
|
|
sourceRoot = "${finalAttrs.src.name}/plugin";
|
|
processUserFiles = ''
|
|
# Addon will try to load extra stuff unless Python package name is "plugin".
|
|
temp=$(mktemp -d)
|
|
ln -s $PWD $temp/plugin
|
|
# Addoon expects `user_files` dir at `$XDG_DATA_HOME/local-audio-yomichan`
|
|
ln -s $PWD/user_files $temp/local-audio-yomichan
|
|
|
|
PYTHONPATH=$temp \
|
|
WO_ANKI=1 \
|
|
XDG_DATA_HOME=$temp \
|
|
${lib.getExe python3} -c \
|
|
"from plugin import db_utils; \
|
|
db_utils.init_db()"
|
|
'';
|
|
passthru.updateScript = nix-update-script {
|
|
extraArgs = [ "--version=branch" ];
|
|
};
|
|
meta = {
|
|
description = "Run a local audio server for Yomitan";
|
|
longDescription = ''
|
|
This add-on must be configured with an audio collection.
|
|
|
|
Example:
|
|
|
|
```nix
|
|
pkgs.ankiAddons.local-audio-yomichan.withConfig {
|
|
userFiles =
|
|
let
|
|
audio-collection =
|
|
pkgs.runCommand "local-yomichan-audio-collection"
|
|
{
|
|
outputHashMode = "recursive";
|
|
outputHash = "sha256-NxbcXh2SDPfCd+ZHAWT5JdxRecNbT4Xpo0pxX5/DOfo=";
|
|
|
|
src = pkgs.requireFile {
|
|
name = "local-yomichan-audio-collection-2023-06-11-opus.tar.xz";
|
|
url = "https://github.com/yomidevs/local-audio-yomichan?tab=readme-ov-file#steps";
|
|
sha256 = "1xsxp8iggklv77rj972mqaa1i8f9hvr3ir0r2mwfqcdz4q120hr1";
|
|
};
|
|
}
|
|
'''
|
|
mkdir -p $out
|
|
cd $out
|
|
tar -xf "$src"
|
|
''';
|
|
in
|
|
"''${audio-collection}/user_files";
|
|
}
|
|
```
|
|
'';
|
|
homepage = "https://github.com/yomidevs/local-audio-yomichan";
|
|
license = lib.licenses.mit;
|
|
maintainers = with lib.maintainers; [ junestepp ];
|
|
};
|
|
})
|