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:
Arnold Krille 2015-10-02 14:27:04 +02:00
parent bb7eb9829d
commit 48f05f7b10
2 changed files with 4 additions and 2 deletions

View file

@ -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

View file

@ -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";