nixpkgs/pkgs/applications/video/gnash/default.nix
Armijn Hemel 1995e1265e add gnash, the GNU Flash Player. Might need some reworking with regard to the
location of the flash plugin. Also, is probably very impure (needs testing
on NixOS).

svn path=/nixpkgs/trunk/; revision=6591
2006-09-24 12:23:13 +00:00

18 lines
486 B
Nix

{stdenv, fetchurl, libX11, libXext, libXi, libXmu
, SDL, SDL_mixer, GStreamer
, libogg, libxml2, libjpeg, mesa, libpng}:
stdenv.mkDerivation {
name = "gnash-0.7.1";
builder = ./builder.sh;
src = fetchurl {
url = ftp://ftp.nluug.nl/pub/gnu/gnash/0.7.1/gnash-0.7.1.tar.bz2;
md5 = "d860981aeaac0fc941a28abc3c24223c";
};
buildInputs = [libX11 libXext libXi libXmu SDL SDL_mixer GStreamer
libogg libxml2 libjpeg mesa libpng];
inherit SDL_mixer SDL;
}