23 lines
416 B
Nix
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;
|
|
};
|
|
}
|