26 lines
586 B
Nix
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;
|
|
};
|
|
}
|