Files
voxtype-toggle-plasmashell/default.nix
James Eversole 3a4c8b16d5 init
2026-04-29 13:55:55 -05:00

23 lines
416 B
Nix

{ 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;
};
}