2017-06-15 02:47:09 +03:00
|
|
|
{ stdenv, fetchFromGitHub, pkgconfig, python2Packages, makeWrapper
|
|
|
|
, bash, libsamplerate, libsndfile, readline, eigen, celt
|
2018-11-12 00:20:41 +03:00
|
|
|
, wafHook
|
2017-09-19 00:15:26 +03:00
|
|
|
# Darwin Dependencies
|
|
|
|
, aften, AudioToolbox, CoreAudio, CoreFoundation
|
2012-04-08 04:00:03 +04:00
|
|
|
|
2015-04-26 06:53:47 +03:00
|
|
|
# Optional Dependencies
|
2016-08-16 23:51:21 +03:00
|
|
|
, dbus ? null, libffado ? null, alsaLib ? null
|
2015-04-26 06:53:47 +03:00
|
|
|
, libopus ? null
|
2010-07-28 22:01:17 +04:00
|
|
|
|
2015-04-26 06:53:47 +03:00
|
|
|
# Extra options
|
|
|
|
, prefix ? ""
|
|
|
|
}:
|
|
|
|
|
|
|
|
with stdenv.lib;
|
|
|
|
let
|
2016-10-17 15:16:14 +03:00
|
|
|
inherit (python2Packages) python dbus-python;
|
2018-08-29 01:20:54 +03:00
|
|
|
shouldUsePkg = pkg: if pkg != null && stdenv.lib.any (stdenv.lib.meta.platformMatch stdenv.hostPlatform) pkg.meta.platforms then pkg else null;
|
2015-06-01 21:52:03 +03:00
|
|
|
|
2015-04-26 06:53:47 +03:00
|
|
|
libOnly = prefix == "lib";
|
|
|
|
|
2017-09-19 00:15:26 +03:00
|
|
|
optDbus = if stdenv.isDarwin then null else shouldUsePkg dbus;
|
2016-08-16 23:51:21 +03:00
|
|
|
optPythonDBus = if libOnly then null else shouldUsePkg dbus-python;
|
2015-04-26 06:53:47 +03:00
|
|
|
optLibffado = if libOnly then null else shouldUsePkg libffado;
|
|
|
|
optAlsaLib = if libOnly then null else shouldUsePkg alsaLib;
|
|
|
|
optLibopus = shouldUsePkg libopus;
|
|
|
|
in
|
2011-05-10 00:49:51 +04:00
|
|
|
stdenv.mkDerivation rec {
|
2015-04-26 06:53:47 +03:00
|
|
|
name = "${prefix}jack2-${version}";
|
2018-01-06 01:13:32 +03:00
|
|
|
version = "1.9.12";
|
2010-07-28 22:01:17 +04:00
|
|
|
|
2015-04-26 06:53:47 +03:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "jackaudio";
|
|
|
|
repo = "jack2";
|
2015-08-31 10:42:31 +03:00
|
|
|
rev = "v${version}";
|
2018-01-06 01:13:32 +03:00
|
|
|
sha256 = "0ynpyn0l77m94b50g7ysl795nvam3ra65wx5zb46nxspgbf6wnkh";
|
2010-07-28 22:01:17 +04:00
|
|
|
};
|
2008-12-20 04:20:35 +03:00
|
|
|
|
2018-11-12 00:20:41 +03:00
|
|
|
nativeBuildInputs = [ pkgconfig python makeWrapper wafHook ];
|
2017-09-19 00:15:26 +03:00
|
|
|
buildInputs = [ libsamplerate libsndfile readline eigen celt
|
2015-04-26 06:53:47 +03:00
|
|
|
optDbus optPythonDBus optLibffado optAlsaLib optLibopus
|
2018-11-12 00:20:41 +03:00
|
|
|
] ++ optionals stdenv.isDarwin [ aften AudioToolbox CoreAudio CoreFoundation ];
|
2011-05-10 00:49:51 +04:00
|
|
|
|
2017-09-19 00:15:26 +03:00
|
|
|
# CoreFoundation 10.10 doesn't include CFNotificationCenter.h yet.
|
2018-11-12 00:20:41 +03:00
|
|
|
patches = optionals stdenv.isDarwin [ ./darwin-cf.patch ];
|
2017-09-19 00:15:26 +03:00
|
|
|
|
|
|
|
prePatch = ''
|
|
|
|
substituteInPlace svnversion_regenerate.sh \
|
|
|
|
--replace /bin/bash ${bash}/bin/bash
|
|
|
|
'';
|
|
|
|
|
|
|
|
# It looks like one of the frameworks depends on <CoreFoundation/CFAttributedString.h>
|
|
|
|
# since frameworks are impure we also have to use the impure CoreFoundation here.
|
|
|
|
# FIXME: remove when CoreFoundation is updated to 10.11
|
2018-11-12 00:20:41 +03:00
|
|
|
preConfigure = optionalString stdenv.isDarwin ''
|
2017-09-19 00:15:26 +03:00
|
|
|
export NIX_CFLAGS_COMPILE="-F${CoreFoundation}/Library/Frameworks $NIX_CFLAGS_COMPILE"
|
2013-02-03 20:22:43 +04:00
|
|
|
'';
|
2012-10-02 00:26:51 +04:00
|
|
|
|
2018-11-12 00:20:41 +03:00
|
|
|
configureFlags = [
|
|
|
|
"--classic"
|
|
|
|
"--autostart=${if (optDbus != null) then "dbus" else "classic"}"
|
|
|
|
] ++ optional (optDbus != null) "--dbus"
|
|
|
|
++ optional (optLibffado != null) "--firewire"
|
|
|
|
++ optional (optAlsaLib != null) "--alsa";
|
2017-09-19 00:15:26 +03:00
|
|
|
|
2018-11-12 00:20:41 +03:00
|
|
|
postInstall = (if libOnly then ''
|
2015-04-26 06:53:47 +03:00
|
|
|
rm -rf $out/{bin,share}
|
|
|
|
rm -rf $out/lib/{jack,libjacknet*,libjackserver*}
|
|
|
|
'' else ''
|
2011-05-10 00:49:51 +04:00
|
|
|
wrapProgram $out/bin/jack_control --set PYTHONPATH $PYTHONPATH
|
2015-04-26 06:53:47 +03:00
|
|
|
'');
|
2011-05-10 00:49:51 +04:00
|
|
|
|
2015-04-26 06:53:47 +03:00
|
|
|
meta = {
|
2011-05-10 00:49:51 +04:00
|
|
|
description = "JACK audio connection kit, version 2 with jackdbus";
|
2017-08-01 23:03:30 +03:00
|
|
|
homepage = http://jackaudio.org;
|
2011-05-10 00:49:51 +04:00
|
|
|
license = licenses.gpl2Plus;
|
2015-04-26 06:53:47 +03:00
|
|
|
platforms = platforms.unix;
|
2019-01-26 13:01:09 +03:00
|
|
|
maintainers = with maintainers; [ goibhniu ];
|
2010-07-28 22:01:17 +04:00
|
|
|
};
|
2008-12-20 04:20:35 +03:00
|
|
|
}
|