\immediate\write18{xindy -L persian -C utf8 -I xindy -M \jobname.xdy  -t \jobname.glg -o \jobname.gls \jobname.glo}
\documentclass{article}
\usepackage[xindy]{glossaries}
\newglossarystyle{mylist}{%
% put the glossary in the itemize environment:
\renewenvironment{theglossary}{}{}%
% have nothing after \begin{theglossary}:
\renewcommand*{\glossaryheader}{}%
% have nothing between glossary groups:
\renewcommand*{\glsgroupheading}[1]{}%
\renewcommand*{\glsgroupskip}{}%
% set how each entry should appear:
\renewcommand*{\glossaryentryfield}[5]{%
%\item[] % bullet point
\glstarget{##1}{##2}% the entry name
\dotfill% the symbol in brackets
\space ##3 \\% the number list in square brackets
}%
% set how sub-entries appear:
\renewcommand*{\glossarysubentryfield}[6]{%
\glossaryentryfield{##2}{##3}{##4}{##5}{##6}}%
}
\makeglossaries
\glossarystyle{mylist}
\def\glossaryname{واژه نامه}
\usepackage{xepersian}
\settextfont{Yas}
\newglossaryentry{گروه}{name=گروه,
description={Group }}
\newglossaryentry{چنبره}{name=چنبره,
description={Torus }}
\newglossaryentry{پردازشگر}{name=پردازشگر,
description={Processor }}
\newglossaryentry{کلاف}{name=کلاف,
description={Bundle }}
\newglossaryentry{شما}{name=شما,
description={Scheme }}
\newglossaryentry{رایانه}{name=رایانه,
description={Computer }}
\newglossaryentry{موسیقی}{name=موسیقی,
description={Music }}
\newglossaryentry{شعر}{name=شعر,
description={Poem }}
\newglossaryentry{زی‌پرشین}{name=زی‌پرشین,
description={\XePersian }}
\newglossaryentry{واژه‌نامه}{name=واژه‌نامه,
description={Glossary }}
\newglossaryentry{آنتن}{name=آنتن,
description={Antenna }}
\begin{document}
\gls{گروه}
\gls{چنبره}
\gls{پردازشگر}
\gls{کلاف}
\gls{شما}\gls{رایانه}\gls{واژه‌نامه}\gls{زی‌پرشین}\gls{موسیقی}\gls{شعر}\gls{آنتن}
\glossarystyle{mylist}
\printglossaries
\end{document}

