libshout: propagate inputs that need to

Missing pkgconfig-deps were preventing detection by mpd, for example.
This only started to occur after pkgconfig update (maybe a bug fixed?).
CC #2769.
This commit is contained in:
Vladimír Čunát 2014-05-30 20:51:14 +02:00
parent 4d269593d2
commit f6f95c94e4

View File

@ -1,5 +1,5 @@
{stdenv, fetchurl, pkgconfig
, libvorbis, libtheora, speex}:
{ stdenv, fetchurl, pkgconfig
, libvorbis, libtheora, speex }:
# need pkgconfig so that libshout installs ${out}/lib/pkgconfig/shout.pc
@ -11,7 +11,8 @@ stdenv.mkDerivation rec {
sha256 = "cf3c5f6b4a5e3fcfbe09fb7024aa88ad4099a9945f7cb037ec06bcee7a23926e";
};
buildInputs = [ libvorbis libtheora speex pkgconfig ];
nativeBuildInputs = [ pkgconfig ];
propagatedBuildInputs = [ libvorbis libtheora speex ];
meta = {
description = "icecast 'c' language bindings";