about summary refs log tree commit diff
path: root/pkgs/applications/video/mplayerplug-in/default.fix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/applications/video/mplayerplug-in/default.fix')
-rw-r--r--pkgs/applications/video/mplayerplug-in/default.fix17
1 files changed, 17 insertions, 0 deletions
diff --git a/pkgs/applications/video/mplayerplug-in/default.fix b/pkgs/applications/video/mplayerplug-in/default.fix
new file mode 100644
index 0000000000000..c06fc31fee425
--- /dev/null
+++ b/pkgs/applications/video/mplayerplug-in/default.fix
@@ -0,0 +1,17 @@
+{stdenv, fetchurl, x11}:
+
+assert !isNull x11;
+
+derivation {
+  name = "mplayerplug-in-1.0pre2";
+  system = stdenv.system;
+
+  builder = ./builder.sh;
+  src = fetchurl {
+    url = http://heanet.dl.sourceforge.net/sourceforge/mplayerplug-in/mplayerplug-in-1.0pre2.tar.gz;
+    md5 = "1a6eb243989c143984bb1aac63b5282e";
+  };
+
+  stdenv = stdenv;
+  x11 = x11;
+}