It is available in most, if not all, linux distributions. A small example for clojure follows:
[...]
\usepackage[section]{minted}
\begin{document}
[...]
\begin{minted}[gobble=2, frame=single}{clj}
(with-open [reader (-> "META-INF/maven/my-program/my-program/pom.properties"
io/resource
io/reader)]
(-> (doto (java.util.Properties.)
(.load reader))
(.getProperty "version")))
\end{minted}
[...]
\end{document}
Keep in mind that pdflatex has to be invoked with -shell-escape in order to allow pygments to be called. If you use latexmk (if you don't know about it, check it out!), then you could use the following command stored in a shell script or Makefile:
latexmk -pdf -pdflatex='pdflatex -shell-escape %O %S' -pvc $(REPORT).tex
At least it has been immensely useful to me.
-- JN