This commit is contained in:
James Eversole
2026-04-29 13:55:55 -05:00
commit 35d8b5e466
6 changed files with 282 additions and 0 deletions

25
default.nix Normal file
View File

@@ -0,0 +1,25 @@
{ stdenvNoCC, lib }:
stdenvNoCC.mkDerivation {
pname = "plasma-applet-voxtype-toggle";
version = "1.0.1";
src = ./.;
installPhase = ''
runHook preInstall
install -D -t "$out/share/plasma/plasmoids/org.eversole.voxtype-toggle/" \
metadata.json
install -D -t "$out/share/plasma/plasmoids/org.eversole.voxtype-toggle/contents/ui" \
contents/ui/main.qml
runHook postInstall
'';
meta = with lib; {
description = "KDE Plasma 6 applet to toggle voxtype voice typing on/off";
license = licenses.isc;
platforms = platforms.linux;
};
}