ankiAddons.adjust-sound-volume: init at 0.0.6

This commit is contained in:
June Stepp
2025-06-08 09:09:42 -05:00
parent a6826b4103
commit 4c1ec45e5a
2 changed files with 24 additions and 1 deletions
@@ -0,0 +1,23 @@
{
lib,
anki-utils,
fetchFromGitHub,
nix-update-script,
}:
anki-utils.buildAnkiAddon (finalAttrs: {
pname = "adjust-sound-volume";
version = "0.0.6";
src = fetchFromGitHub {
owner = "mnogu";
repo = "adjust-sound-volume";
rev = "v${finalAttrs.version}";
hash = "sha256-6reIUz+tHKd4KQpuofLa/tIL5lCloj3yODZ8Cz29jFU=";
};
passthru.updateScript = nix-update-script { };
meta = {
description = "Add a new menu item for adjusting the sound volume";
homepage = "https://github.com/mnogu/adjust-sound-volume";
license = lib.licenses.agpl3Plus;
maintainers = with lib.maintainers; [ junestepp ];
};
})
+1 -1
View File
@@ -2,5 +2,5 @@
callPackage,
}:
{
adjust-sound-volume = callPackage ./adjust-sound-volume { };
}