Files
voxtype-toggle-plasmashell/default.nix
James Eversole 690d3a1586 init
2026-04-29 14:13:25 -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;
};
}