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

24
default.nix Normal file
View File

@@ -0,0 +1,24 @@
{ 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 \
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;
};
}