flashplayer: update, fixing many security CVEs

+6 -5
+6 -5
pkgs/applications/networking/browsers/mozilla-plugins/flashplayer-11/default.nix
··· 35 }: 36 37 let 38 39 src = 40 if stdenv.system == "x86_64-linux" then ··· 43 # http://labs.adobe.com/technologies/flashplayer10/faq.html 44 throw "no x86_64 debugging version available" 45 else rec { 46 - # -> http://labs.adobe.com/downloads/flashplayer10.html 47 - version = "11.2.202.310"; 48 url = "http://fpdownload.macromedia.com/get/flashplayer/pdc/${version}/install_flash_player_11_linux.x86_64.tar.gz"; 49 - sha256 = "03r9r7h3l4i15hw62k9il6pjzq122nldbgxr37b4y10xp08a9izj"; 50 } 51 else if stdenv.system == "i686-linux" then 52 if debug then { ··· 55 url = http://fpdownload.macromedia.com/pub/flashplayer/updaters/11/flashplayer_11_plugin_debug.i386.tar.gz; 56 sha256 = "1z3649lv9sh7jnwl8d90a293nkaswagj2ynhsr4xmwiy7c0jz2lk"; 57 } else rec { 58 - version = "11.2.202.310"; 59 url = "http://fpdownload.macromedia.com/get/flashplayer/pdc/${version}/install_flash_player_11_linux.i386.tar.gz"; 60 - sha256 = "0qf09p92silp81pjfcg2vcfcfi1padizmb58q5iaarnapgkawlbh"; 61 } 62 else throw "Flash Player is not supported on this platform"; 63
··· 35 }: 36 37 let 38 + # -> http://get.adobe.com/flashplayer/ 39 + version = "11.2.202.336"; 40 41 src = 42 if stdenv.system == "x86_64-linux" then ··· 45 # http://labs.adobe.com/technologies/flashplayer10/faq.html 46 throw "no x86_64 debugging version available" 47 else rec { 48 + inherit version; 49 url = "http://fpdownload.macromedia.com/get/flashplayer/pdc/${version}/install_flash_player_11_linux.x86_64.tar.gz"; 50 + sha256 = "1wri6y5vllgs452dfklv23k7bp5daajnaqblkn5cb2gl28l5xcni"; 51 } 52 else if stdenv.system == "i686-linux" then 53 if debug then { ··· 56 url = http://fpdownload.macromedia.com/pub/flashplayer/updaters/11/flashplayer_11_plugin_debug.i386.tar.gz; 57 sha256 = "1z3649lv9sh7jnwl8d90a293nkaswagj2ynhsr4xmwiy7c0jz2lk"; 58 } else rec { 59 + inherit version; 60 url = "http://fpdownload.macromedia.com/get/flashplayer/pdc/${version}/install_flash_player_11_linux.i386.tar.gz"; 61 + sha256 = "0mjxjbj75r74gqpmqzqa6vlrk2wv7r358wcqbmg132bhv8kaph85"; 62 } 63 else throw "Flash Player is not supported on this platform"; 64