2011-12-03 15:16:17 +00:00
|
|
|
{ stdenv
|
|
|
|
, fetchurl
|
|
|
|
, zlib
|
|
|
|
, alsaLib
|
|
|
|
, curl
|
|
|
|
, nspr
|
|
|
|
, fontconfig
|
|
|
|
, freetype
|
|
|
|
, expat
|
|
|
|
, libX11
|
|
|
|
, libXext
|
|
|
|
, libXrender
|
2012-10-05 02:15:26 +01:00
|
|
|
, libXcursor
|
2011-12-03 15:16:17 +00:00
|
|
|
, libXt
|
2013-01-08 19:40:18 +00:00
|
|
|
, libvdpau
|
2012-10-05 02:15:26 +01:00
|
|
|
, gtk
|
2011-12-03 15:16:17 +00:00
|
|
|
, glib
|
|
|
|
, pango
|
|
|
|
, cairo
|
|
|
|
, atk
|
|
|
|
, gdk_pixbuf
|
2013-02-28 00:22:00 +00:00
|
|
|
, nss
|
2011-12-03 15:16:17 +00:00
|
|
|
, debug ? false
|
|
|
|
|
|
|
|
/* you have to add ~/mm.cfg :
|
|
|
|
|
|
|
|
TraceOutputFileEnable=1
|
|
|
|
ErrorReportingEnable=1
|
|
|
|
MaxWarnings=1
|
|
|
|
|
|
|
|
in order to read the flash trace at ~/.macromedia/Flash_Player/Logs/flashlog.txt
|
|
|
|
Then FlashBug (a FireFox plugin) shows the log as well
|
|
|
|
*/
|
|
|
|
|
|
|
|
}:
|
|
|
|
|
|
|
|
let
|
2014-02-05 21:17:41 +00:00
|
|
|
# -> http://get.adobe.com/flashplayer/
|
2015-08-23 12:42:41 +01:00
|
|
|
version = "11.2.202.508";
|
2011-12-03 15:16:17 +00:00
|
|
|
|
|
|
|
src =
|
|
|
|
if stdenv.system == "x86_64-linux" then
|
|
|
|
if debug then
|
|
|
|
# no plans to provide a x86_64 version:
|
|
|
|
# http://labs.adobe.com/technologies/flashplayer10/faq.html
|
|
|
|
throw "no x86_64 debugging version available"
|
2012-10-03 10:19:27 +01:00
|
|
|
else rec {
|
2014-02-05 21:17:41 +00:00
|
|
|
inherit version;
|
2015-06-24 15:06:09 +01:00
|
|
|
url = "http://fpdownload.adobe.com/get/flashplayer/pdc/${version}/install_flash_player_11_linux.x86_64.tar.gz";
|
2015-08-23 12:42:41 +01:00
|
|
|
sha256 = "1i0301vnz94pxcwm9wk1jjyv7gwywy6p7z26ikd5cg259myxbg75";
|
2011-12-03 15:16:17 +00:00
|
|
|
}
|
|
|
|
else if stdenv.system == "i686-linux" then
|
2014-09-13 15:15:22 +01:00
|
|
|
if debug then
|
|
|
|
throw "flash debugging version is outdated and probably broken" /* {
|
2011-12-03 15:16:17 +00:00
|
|
|
# The debug version also contains a player
|
|
|
|
version = "11.1";
|
2015-06-24 15:06:09 +01:00
|
|
|
url = http://fpdownload.adobe.com/pub/flashplayer/updaters/11/flashplayer_11_plugin_debug.i386.tar.gz;
|
2015-01-31 11:21:08 +00:00
|
|
|
sha256 = "0jn7klq2cyqasj6nxfka2l8nsf7sn7hi6443nv6dd2sb3g7m6x92";
|
2014-09-13 15:15:22 +01:00
|
|
|
}*/
|
|
|
|
else rec {
|
2014-02-05 21:17:41 +00:00
|
|
|
inherit version;
|
2015-06-24 15:06:09 +01:00
|
|
|
url = "http://fpdownload.adobe.com/get/flashplayer/pdc/${version}/install_flash_player_11_linux.i386.tar.gz";
|
2015-08-23 12:42:41 +01:00
|
|
|
sha256 = "1483bi34ymchv1cqg57whxhlrhhvwhcw33zjgwzmy7bacxbkj9ia";
|
2011-12-03 15:16:17 +00:00
|
|
|
}
|
|
|
|
else throw "Flash Player is not supported on this platform";
|
|
|
|
|
|
|
|
in
|
|
|
|
|
|
|
|
stdenv.mkDerivation {
|
|
|
|
name = "flashplayer-${src.version}";
|
|
|
|
|
|
|
|
builder = ./builder.sh;
|
2012-10-05 02:15:26 +01:00
|
|
|
|
2011-12-03 15:16:17 +00:00
|
|
|
src = fetchurl { inherit (src) url sha256; };
|
|
|
|
|
|
|
|
inherit zlib alsaLib;
|
|
|
|
|
|
|
|
passthru = {
|
|
|
|
mozillaPlugin = "/lib/mozilla/plugins";
|
|
|
|
};
|
|
|
|
|
|
|
|
rpath = stdenv.lib.makeLibraryPath
|
2013-02-21 16:45:20 +00:00
|
|
|
[ zlib alsaLib curl nspr fontconfig freetype expat libX11
|
2012-10-05 02:15:26 +01:00
|
|
|
libXext libXrender libXcursor libXt gtk glib pango atk cairo gdk_pixbuf
|
2013-02-28 00:22:00 +00:00
|
|
|
libvdpau nss
|
2011-12-03 15:16:17 +00:00
|
|
|
];
|
|
|
|
|
|
|
|
buildPhase = ":";
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = "Adobe Flash Player browser plugin";
|
|
|
|
homepage = http://www.adobe.com/products/flashplayer/;
|
2014-06-19 05:19:00 +01:00
|
|
|
license = stdenv.lib.licenses.unfree;
|
2011-12-03 15:16:17 +00:00
|
|
|
};
|
|
|
|
}
|