* Added libXv (XVideo).

* Zapping/VLC/MPlayer: use libXv.
* MPlayer: upgrade to 1.0pre4.
* Zapping: add libXext to the rpath.  I don't understand why this is
  necessary.  Zapping doesn't itself link against libXext, though some
  of its dependencies do.  (Maybe this is due to `--export-dynamic'?)

svn path=/nixpkgs/trunk/; revision=990
This commit is contained in:
Eelco Dolstra
2004-05-01 18:17:56 +00:00
parent d357f1a8ed
commit d811b4c9d8
10 changed files with 53 additions and 24 deletions

View File

@@ -66,6 +66,10 @@ rec {
inherit fetchurl stdenv pkgconfig xproto libX11 libXt libXmu libXpm;
};
libXv = (import ./libXv) {
inherit fetchurl stdenv pkgconfig libX11;
};
xlibs = (import ./xlibs) {
inherit stdenv libX11 libXt freetype fontconfig libXft libXext;
};

View File

@@ -0,0 +1,11 @@
{stdenv, fetchurl, pkgconfig, libX11}:
stdenv.mkDerivation {
name = "libXv-2.2.1";
src = fetchurl {
url = http://freedesktop.org/~xlibs/release/xlibs-1.0/libXv-2.2.1.tar.bz2;
md5 = "89b8ca62a77c662a8a7ded89bcf0dd67";
};
buildInputs = [pkgconfig];
propagatedBuildInputs = [libX11];
}