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

22
default.nix Normal file
View File

@@ -0,0 +1,22 @@
{ stdenvNoCC, lib }:
stdenvNoCC.mkDerivation {
pname = "plasma-applet-voxtype-toggle";
version = "1.0.1";
src = ./.;
installPhase = ''
runHook preInstall
cp -r --no-preserve=mode,ownership . $out
runHook postInstall
'';
meta = with lib; {
description = "KDE Plasma 6 applet to toggle voxtype voice typing on/off";
license = licenses.isc;
platforms = platforms.linux;
};
}