Files
voxtype-toggle-plasmashell/default.nix
James Eversole ce2bb0bb43 init
2026-04-29 14:32:53 -05:00

26 lines
586 B
Nix

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