summary refs log tree commit diff
path: root/pkgs/applications/networking
diff options
context:
space:
mode:
authorEelco Dolstra <eelco.dolstra@logicblox.com>2007-11-04 17:16:52 +0000
committerEelco Dolstra <eelco.dolstra@logicblox.com>2007-11-04 17:16:52 +0000
commit1bc214fd59019aefd60d6ea23c79fdc3293f2845 (patch)
treed53d1cfee73f7a1d3e73bdbeb3f1759d6884c5ef /pkgs/applications/networking
parent4a70a11011f32f09651b3e9e9a8024a37b6423f1 (diff)
downloadnixpkgs-1bc214fd59019aefd60d6ea23c79fdc3293f2845.tar
nixpkgs-1bc214fd59019aefd60d6ea23c79fdc3293f2845.tar.gz
nixpkgs-1bc214fd59019aefd60d6ea23c79fdc3293f2845.tar.bz2
nixpkgs-1bc214fd59019aefd60d6ea23c79fdc3293f2845.tar.lz
nixpkgs-1bc214fd59019aefd60d6ea23c79fdc3293f2845.tar.xz
nixpkgs-1bc214fd59019aefd60d6ea23c79fdc3293f2845.tar.zst
nixpkgs-1bc214fd59019aefd60d6ea23c79fdc3293f2845.zip
* Latest MPlayer plugin.
svn path=/nixpkgs/trunk/; revision=9576
Diffstat (limited to 'pkgs/applications/networking')
-rw-r--r--pkgs/applications/networking/browsers/mozilla-plugins/mplayerplug-in/default.nix19
1 files changed, 14 insertions, 5 deletions
diff --git a/pkgs/applications/networking/browsers/mozilla-plugins/mplayerplug-in/default.nix b/pkgs/applications/networking/browsers/mozilla-plugins/mplayerplug-in/default.nix
index 48020cfbbe4..12eef1c8859 100644
--- a/pkgs/applications/networking/browsers/mozilla-plugins/mplayerplug-in/default.nix
+++ b/pkgs/applications/networking/browsers/mozilla-plugins/mplayerplug-in/default.nix
@@ -4,16 +4,25 @@
 # are the include files so that we can access the plugin API (I
 # think).
 
-(stdenv.mkDerivation {
-  name = "mplayerplug-in-3.35";
+stdenv.mkDerivation {
+  name = "mplayerplug-in-3.45";
 
   builder = ./builder.sh;
   src = fetchurl {
-    url = mirror://sourceforge/mplayerplug-in/mplayerplug-in-3.35.tar.gz;
-    sha256 = "0zxd2nnmj4n9rkndd614ljv7ylz4f4jqvx1wswqfw5j7hwxm34dw";
+    url = mirror://sourceforge/mplayerplug-in/mplayerplug-in-3.45.tar.gz;
+    sha256 = "0cfl0s7v1bgdak39x7s2hnx968qs3vlv09gmwms27czimn8vijiz";
   };
 
   buildInputs = [pkgconfig firefox (firefox.gtk) libXpm gettext];
   
   inherit firefox;
-}) // {mozillaPlugin = "/lib/mozilla/plugins";}
+
+  passthru = {
+    mozillaPlugin = "/lib/mozilla/plugins";
+  };
+
+  meta = {
+    description = "A browser plugin that uses mplayer to play digital media from websites";
+    homepage = http://mplayerplug-in.sourceforge.net/;
+  };
+}