summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorEvgeny Egorochkin <phreedom.stdin@gmail.com>2010-09-26 03:22:55 +0000
committerEvgeny Egorochkin <phreedom.stdin@gmail.com>2010-09-26 03:22:55 +0000
commit0488c4516a1f3c1f6fe932305e87f7ea3eb86ffb (patch)
tree7fac7b6ddfbaa9ff434a42e2cc53ce88835a3d3f /pkgs
parent80aed14c87076374b99dbe33c3574911b0099197 (diff)
Flash player: works in Konqueror now, fixed missing library link.
Fixed hash: Stupid Adobe changed the file again :(

svn path=/nixpkgs/trunk/; revision=23931
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/applications/networking/browsers/mozilla-plugins/flashplayer-10/default.nix5
1 files changed, 3 insertions, 2 deletions
diff --git a/pkgs/applications/networking/browsers/mozilla-plugins/flashplayer-10/default.nix b/pkgs/applications/networking/browsers/mozilla-plugins/flashplayer-10/default.nix
index 527108a21972b..4e8747a5fec40 100644
--- a/pkgs/applications/networking/browsers/mozilla-plugins/flashplayer-10/default.nix
+++ b/pkgs/applications/networking/browsers/mozilla-plugins/flashplayer-10/default.nix
@@ -15,6 +15,7 @@
 , gtk 
 , glib
 , pango
+, cairo
 , atk
 , debug ? false
 
@@ -53,7 +54,7 @@ let
       } else {
         version = "10.1.82.76";
         url = http://fpdownload.macromedia.com/get/flashplayer/current/install_flash_player_10_linux.tar.gz;
-        sha256 = "c6f8831ce648e7fa8e037f1fa8362d2d998cae0e06490e792bcd5871f3eb936a";
+        sha256 = "7f0e57febd1ca96af626ca1b7f4f95b42eee4ef687ead6853fd49c5517089087";
       }
     else throw "flashplayer is not supported on this platform";
 
@@ -74,7 +75,7 @@ stdenv.mkDerivation {
 
   rpath = stdenv.lib.makeLibraryPath
     [ zlib alsaLib curl nss nspr fontconfig freetype expat libX11
-      libXext libXrender libXt gtk glib pango atk
+      libXext libXrender libXt gtk glib pango atk cairo
     ];
 
   buildPhase = ":";