about summary refs log tree commit diff
path: root/pkgs/applications
diff options
context:
space:
mode:
authorVladimír Čunát <vcunat@gmail.com>2014-09-13 16:15:22 +0200
committerVladimír Čunát <vcunat@gmail.com>2014-09-13 16:15:22 +0200
commit0047db47bd989e4928109289f583ee8f3ede1964 (patch)
treeec94ab935bbeae8c84d7ab00b61b913ebb85bd99 /pkgs/applications
parent3bb60dbefeb0a869246fc75761ece8425d78847b (diff)
downloadnixlib-0047db47bd989e4928109289f583ee8f3ede1964.tar
nixlib-0047db47bd989e4928109289f583ee8f3ede1964.tar.gz
nixlib-0047db47bd989e4928109289f583ee8f3ede1964.tar.bz2
nixlib-0047db47bd989e4928109289f583ee8f3ede1964.tar.lz
nixlib-0047db47bd989e4928109289f583ee8f3ede1964.tar.xz
nixlib-0047db47bd989e4928109289f583ee8f3ede1964.tar.zst
nixlib-0047db47bd989e4928109289f583ee8f3ede1964.zip
flashplayer-11: update, including security fixes
Diffstat (limited to 'pkgs/applications')
-rw-r--r--pkgs/applications/networking/browsers/mozilla-plugins/flashplayer-11/default.nix12
1 files changed, 7 insertions, 5 deletions
diff --git a/pkgs/applications/networking/browsers/mozilla-plugins/flashplayer-11/default.nix b/pkgs/applications/networking/browsers/mozilla-plugins/flashplayer-11/default.nix
index 55521a13f9cb..32baa0b6a868 100644
--- a/pkgs/applications/networking/browsers/mozilla-plugins/flashplayer-11/default.nix
+++ b/pkgs/applications/networking/browsers/mozilla-plugins/flashplayer-11/default.nix
@@ -36,7 +36,7 @@
 
 let
   # -> http://get.adobe.com/flashplayer/
-  version = "11.2.202.400";
+  version = "11.2.202.406";
 
   src =
     if stdenv.system == "x86_64-linux" then
@@ -47,18 +47,20 @@ let
       else rec {
         inherit version;
         url = "http://fpdownload.macromedia.com/get/flashplayer/pdc/${version}/install_flash_player_11_linux.x86_64.tar.gz";
-        sha256 = "043bzjcqxjkjk68kba5nk77m59k6g71h32bypjpnwaigdgbhafyl";
+        sha256 = "05akcw89kz0cnhan6wp72banz2asmvqfhb2cw1krn66qgd7bl0x0";
       }
     else if stdenv.system == "i686-linux" then
-      if debug then {
+      if debug then
+        throw "flash debugging version is outdated and probably broken" /* {
         # The debug version also contains a player
         version = "11.1";
         url = http://fpdownload.macromedia.com/pub/flashplayer/updaters/11/flashplayer_11_plugin_debug.i386.tar.gz;
         sha256 = "1z3649lv9sh7jnwl8d90a293nkaswagj2ynhsr4xmwiy7c0jz2lk";
-      } else rec {
+      }*/
+      else rec {
         inherit version;
         url = "http://fpdownload.macromedia.com/get/flashplayer/pdc/${version}/install_flash_player_11_linux.i386.tar.gz";
-        sha256 = "1xvfzm926rj0l2mq2kybrvykrv7bjfl3m7p5mvhj1586a3x1gb6h";
+        sha256 = "10f3842vi80kszj42f4c8sw7plrmvsin5k860cqvlzgdhndz8i4b";
       }
     else throw "Flash Player is not supported on this platform";