summary refs log tree commit diff
path: root/pkgs/applications/video/mplayerplug-in/default.nix
blob: 5337325e426968135564c9719fe2347db0ecbb88 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
{stdenv, fetchurl, x11}:

assert x11 != null;

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;
}