(use-modules (guix packages) (guix download) (guix build-system gnu) (guix licenses) (gnu packages boost) (gnu packages graphics) (gnu packages gl) (gnu packages gtk) (gnu packages gnome) (gnu packages sdl) (gnu packages fltk) (gnu packages gstreamer) (gnu packages video) (gnu packages image) (gnu packages curl) (gnu packages glib) (gnu packages autotools) (gnu packages gettext) (gnu packages python) (gnu packages dejagnu) (gnu packages docbook) (gnu packages texinfo) (gnu packages java)) (package (name "gnash") (version "0.8.10") (source (origin (method url-fetch) (uri (string-append "http://ftp.gnu.org/gnu/gnash/0.8.10/gnash-0.8.10.tar.gz")) (sha256 (base32 "0xa881wbvv0a6nfgz00sxz8prl9i9zjbvv4xcgyy5a9v2inx6sbx")))) (build-system gnu-build-system) (native-inputs `( ("boost", boost) ("agg", agg) ("mesa", mesa) ("cairo", cairo) ("gtk+", gtk+) ("gtkglext", gtkglext) ("sdl", sdl) ("fltk", fltk) ("gstreamer", gstreamer) ("ffmpeg", ffmpeg) ("libjpeg", libjpeg) ("libpng", libpng) ("libungif", libungif) ("curl", curl) ("glib", glib) ("atk", atk) ("pango", pango) ("automake", automake) ("autoconf", autoconf) ;;("gettext", gettext) ("libtool", libtool))) (synopsis "GNU Gnash is the GNU Flash movie player") (description "Flash is an animation file format pioneered by Macromedia which continues to be supported by their successor company, Adobe. Flash has been extended to include audio and video content, and programs written in ActionScript, an ECMAScript-compatible language. Gnash is based on GameSWF, and supports most SWF v7 features and some SWF v8 and v9.") (home-page "https://www.gnu.org/software/gnash/") (license gpl3+))