summary refs log tree commit diff
path: root/pkgs-ng/applications/video/mplayerplug-in/default.fix
blob: c06fc31fee425785f48d2adffe1933df2276ea89 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
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;
}