GNU Gnash 0.8.4.
svn path=/nixpkgs/trunk/; revision=13059
This commit is contained in:
parent
e0ce7f16f7
commit
064d1af52b
|
@ -1,17 +1,17 @@
|
||||||
{ stdenv, fetchurl
|
{ stdenv, fetchurl
|
||||||
, SDL, SDL_mixer, GStreamer
|
, SDL, SDL_mixer, gstreamer, gstreamerPluginsBase
|
||||||
, libogg, libxml2, libjpeg, mesa, libpng, libtool
|
, libogg, libxml2, libjpeg, mesa, libpng, libungif, libtool
|
||||||
, boost, freetype, agg, dbus, curl, pkgconfig
|
, boost, freetype, agg, dbus, curl, pkgconfig, gettext
|
||||||
, glib, gtk, x11
|
, glib, gtk, x11, ming, dejagnu, python
|
||||||
, lib}:
|
, lib}:
|
||||||
|
|
||||||
let version = "0.8.3"; in
|
let version = "0.8.4"; in
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
name = "gnash-${version}";
|
name = "gnash-${version}";
|
||||||
|
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
url = "mirror://gnu/gnash/${version}/${name}.tar.bz2";
|
url = "mirror://gnu/gnash/${version}/${name}.tar.bz2";
|
||||||
sha256 = "16n32774sd5q4nkd95v2m8r2yfa9fk30jnq1iicarq3j8i2xh7xg";
|
sha256 = "094jky77ghdisq17z742cwn3g9ckm937p8h5jbji5rrdqbdlpzkg";
|
||||||
};
|
};
|
||||||
|
|
||||||
builder = ./builder.sh;
|
builder = ./builder.sh;
|
||||||
|
@ -34,9 +34,15 @@ stdenv.mkDerivation rec {
|
||||||
|
|
||||||
|
|
||||||
# XXX: KDE is supported as well so we could make it available optionally.
|
# XXX: KDE is supported as well so we could make it available optionally.
|
||||||
buildInputs = [x11 SDL SDL_mixer GStreamer libtool
|
buildInputs = [
|
||||||
libogg libxml2 libjpeg mesa libpng boost freetype agg
|
gettext x11 SDL SDL_mixer gstreamer gstreamerPluginsBase libtool
|
||||||
dbus curl pkgconfig glib gtk];
|
libogg libxml2 libjpeg mesa libpng libungif boost freetype agg
|
||||||
|
dbus curl pkgconfig glib gtk
|
||||||
|
|
||||||
|
# For the test suite
|
||||||
|
ming dejagnu python
|
||||||
|
];
|
||||||
|
|
||||||
inherit SDL_mixer SDL;
|
inherit SDL_mixer SDL;
|
||||||
|
|
||||||
# Make sure `gtk-gnash' gets `libXext' in its `RPATH'.
|
# Make sure `gtk-gnash' gets `libXext' in its `RPATH'.
|
||||||
|
@ -47,7 +53,7 @@ stdenv.mkDerivation rec {
|
||||||
|
|
||||||
meta = {
|
meta = {
|
||||||
homepage = http://www.gnu.org/software/gnash/;
|
homepage = http://www.gnu.org/software/gnash/;
|
||||||
description = ''Gnash is the GNU Flash movie player.'';
|
description = "GNU Gnash, an SWF movie player";
|
||||||
license = "GPLv3+";
|
license = "GPLv3+";
|
||||||
};
|
};
|
||||||
} // {mozillaPlugin = "/plugins";}
|
} // {mozillaPlugin = "/plugins";}
|
||||||
|
|
|
@ -6349,9 +6349,11 @@ let
|
||||||
|
|
||||||
gnash = assert mesaSupported; import ../applications/video/gnash {
|
gnash = assert mesaSupported; import ../applications/video/gnash {
|
||||||
inherit fetchurl stdenv SDL SDL_mixer libogg libxml2 libjpeg mesa libpng
|
inherit fetchurl stdenv SDL SDL_mixer libogg libxml2 libjpeg mesa libpng
|
||||||
boost freetype agg dbus curl pkgconfig x11 libtool lib;
|
boost freetype agg dbus curl pkgconfig x11 libtool lib libungif
|
||||||
|
gettext ming dejagnu python;
|
||||||
inherit (gtkLibs) glib gtk;
|
inherit (gtkLibs) glib gtk;
|
||||||
GStreamer = gst_all.gstreamer;
|
gstreamer = gst_all.gstreamer;
|
||||||
|
gstreamerPluginsBase = gst_all.gstPluginsBase;
|
||||||
};
|
};
|
||||||
|
|
||||||
gnunet = import ../applications/networking/p2p/gnunet {
|
gnunet = import ../applications/networking/p2p/gnunet {
|
||||||
|
|
Loading…
Reference in New Issue