(use-modules (guix packages) (guix licenses) (guix build-system gnu) (gnu packages autotools) (gnu packages guile) (gnu packages package-management)) (package (name "guix-web") (version "0.1") (source ".") (build-system gnu-build-system) (native-inputs `(("autoconf" ,autoconf) ("automake" ,automake))) (inputs `(("guile" ,guile-2.0) ("guile-json" ,guile-json))) (synopsis "Web frontend for GNU Guix") (description "Guix-web is a web interface to the GNU Guix package manager written in GNU Guile Scheme and JavaScript.") (home-page "https://gitorious.org/guix-web/guix-web") (license agpl3+))