xine-lib: added pkg-config

svn path=/nixpkgs/trunk/; revision=10329
This commit is contained in:
Yury G. Kudryashov 2008-01-28 19:38:08 +00:00
parent 68cf3dddcc
commit 45426906f0
2 changed files with 3 additions and 3 deletions

View file

@ -2,7 +2,7 @@
, xineramaSupport ? true
, encryptedDVDSupport ? true
, alsaSupport ? true
, stdenv, fetchurl, zlib, x11
, stdenv, fetchurl, zlib, x11, pkgconfig
, libXv ? null, libXinerama ? null, libdvdcss ? null, alsaLib ? null
}:
@ -19,7 +19,7 @@ assert alsaSupport -> alsaLib != null;
sha256 = "03iwhgsf9kj0x5b4fgv7lzc1vj3frk4afh2idgrqskvixjyi37vc";
};
buildInputs = [
x11
x11 pkgconfig
(if xvideoSupport then libXv else null)
(if xineramaSupport then libXinerama else null)
(if alsaSupport then alsaLib else null)

View file

@ -2551,7 +2551,7 @@ rec {
};
xineLib = import ../development/libraries/xine-lib {
inherit fetchurl stdenv zlib x11 libdvdcss alsaLib;
inherit fetchurl stdenv zlib x11 libdvdcss alsaLib pkgconfig;
inherit (xlibs) libXv libXinerama;
};