jackaudio: Add libuuid as propagatedBuildInput
The jack/jack.h includes uuid/uuid.h, therefox libuuid should be a propagated input for anything using jack.
This commit is contained in:
parent
bb7eb9829d
commit
48f05f7b10
@ -1,5 +1,5 @@
|
||||
{ stdenv, fetchFromGitHub, pkgconfig, python, makeWrapper
|
||||
, bash, libsamplerate, libsndfile, readline
|
||||
, bash, libsamplerate, libsndfile, libuuid, readline
|
||||
|
||||
# Optional Dependencies
|
||||
, dbus ? null, pythonDBus ? null, libffado ? null, alsaLib ? null
|
||||
@ -40,6 +40,7 @@ stdenv.mkDerivation rec {
|
||||
|
||||
optDbus optPythonDBus optLibffado optAlsaLib optLibopus
|
||||
];
|
||||
propagatedBuildInputs = [ libuuid ];
|
||||
|
||||
prePatch = ''
|
||||
substituteInPlace svnversion_regenerate.sh --replace /bin/bash ${bash}/bin/bash
|
||||
|
@ -27,7 +27,8 @@ stdenv.mkDerivation rec {
|
||||
'';
|
||||
|
||||
nativeBuildInputs = [ pkgconfig ];
|
||||
buildInputs = [ optAlsaLib optDb optLibuuid optLibffado optCelt ];
|
||||
buildInputs = [ optAlsaLib optDb optLibffado optCelt ];
|
||||
propagatedBuildInputs = [ optLibuuid ];
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
description = "JACK audio connection kit";
|
||||
|
Loading…
Reference in New Issue
Block a user