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:
parent
4d269593d2
commit
f6f95c94e4
@ -1,17 +1,18 @@
|
|||||||
{stdenv, fetchurl, pkgconfig
|
{ stdenv, fetchurl, pkgconfig
|
||||||
, libvorbis, libtheora, speex}:
|
, libvorbis, libtheora, speex }:
|
||||||
|
|
||||||
# need pkgconfig so that libshout installs ${out}/lib/pkgconfig/shout.pc
|
# need pkgconfig so that libshout installs ${out}/lib/pkgconfig/shout.pc
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
name = "libshout-2.3.1";
|
name = "libshout-2.3.1";
|
||||||
|
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
url = "http://downloads.xiph.org/releases/libshout/${name}.tar.gz";
|
url = "http://downloads.xiph.org/releases/libshout/${name}.tar.gz";
|
||||||
sha256 = "cf3c5f6b4a5e3fcfbe09fb7024aa88ad4099a9945f7cb037ec06bcee7a23926e";
|
sha256 = "cf3c5f6b4a5e3fcfbe09fb7024aa88ad4099a9945f7cb037ec06bcee7a23926e";
|
||||||
};
|
};
|
||||||
|
|
||||||
buildInputs = [ libvorbis libtheora speex pkgconfig ];
|
nativeBuildInputs = [ pkgconfig ];
|
||||||
|
propagatedBuildInputs = [ libvorbis libtheora speex ];
|
||||||
|
|
||||||
meta = {
|
meta = {
|
||||||
description = "icecast 'c' language bindings";
|
description = "icecast 'c' language bindings";
|
||||||
|
Loading…
Reference in New Issue
Block a user