8b01d4ef0a
* Plugins can specify extra directories to be added to LD_LIBRARY_PATH by the Firefox wrapper. The Flash plugin need this since it's installed from a binary distribution, and so doesn't set the RPATH properly. * Moved the MPlayer plugin to a plugins directory. svn path=/nixpkgs/trunk/; revision=1566
13 lines
332 B
Nix
13 lines
332 B
Nix
{stdenv, fetchurl, zlib, libXmu}:
|
|
|
|
stdenv.mkDerivation {
|
|
name = "flashplayer-7.0r25";
|
|
|
|
builder = ./builder.sh;
|
|
src = fetchurl {
|
|
url = http://fpdownload.macromedia.com/get/shockwave/flash/english/linux/7.0r25/install_flash_player_7_linux.tar.gz;
|
|
md5 = "79c59a5ea29347e01c8e6575dd054cd1";
|
|
};
|
|
|
|
inherit zlib libXmu;
|
|
}
|