2017-06-15 00:47:09 +01:00
|
|
|
{ stdenv, fetchFromGitHub, pkgconfig, python2Packages, makeWrapper
|
2019-04-30 02:32:12 +01:00
|
|
|
, fetchpatch
|
2017-06-15 00:47:09 +01:00
|
|
|
, bash, libsamplerate, libsndfile, readline, eigen, celt
|
2019-04-30 02:32:12 +01:00
|
|
|
, wafHook, aften
|
2017-09-18 22:15:26 +01:00
|
|
|
# Darwin Dependencies
|
2019-04-30 02:32:12 +01:00
|
|
|
, AudioUnit, CoreAudio, cf-private, libobjc, Accelerate
|
2012-04-08 01:00:03 +01:00
|
|
|
|
2015-04-26 04:53:47 +01:00
|
|
|
# Optional Dependencies
|
2016-08-16 21:51:21 +01:00
|
|
|
, dbus ? null, libffado ? null, alsaLib ? null
|
2015-04-26 04:53:47 +01:00
|
|
|
, libopus ? null
|
2010-07-28 19:01:17 +01:00
|
|
|
|
2015-04-26 04:53:47 +01:00
|
|
|
# Extra options
|
|
|
|
, prefix ? ""
|
|
|
|
}:
|
|
|
|
|
|
|
|
with stdenv.lib;
|
|
|
|
let
|
2016-10-17 13:16:14 +01:00
|
|
|
inherit (python2Packages) python dbus-python;
|
2018-08-28 23:20:54 +01: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 19:52:03 +01:00
|
|
|
|
2015-04-26 04:53:47 +01:00
|
|
|
libOnly = prefix == "lib";
|
|
|
|
|
2017-09-18 22:15:26 +01:00
|
|
|
optDbus = if stdenv.isDarwin then null else shouldUsePkg dbus;
|
2016-08-16 21:51:21 +01:00
|
|
|
optPythonDBus = if libOnly then null else shouldUsePkg dbus-python;
|
2015-04-26 04:53:47 +01:00
|
|
|
optLibffado = if libOnly then null else shouldUsePkg libffado;
|
|
|
|
optAlsaLib = if libOnly then null else shouldUsePkg alsaLib;
|
|
|
|
optLibopus = shouldUsePkg libopus;
|
|
|
|
in
|
2011-05-09 21:49:51 +01:00
|
|
|
stdenv.mkDerivation rec {
|
2015-04-26 04:53:47 +01:00
|
|
|
name = "${prefix}jack2-${version}";
|
2018-01-05 22:13:32 +00:00
|
|
|
version = "1.9.12";
|
2010-07-28 19:01:17 +01:00
|
|
|
|
2015-04-26 04:53:47 +01:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "jackaudio";
|
|
|
|
repo = "jack2";
|
2015-08-31 08:42:31 +01:00
|
|
|
rev = "v${version}";
|
2018-01-05 22:13:32 +00:00
|
|
|
sha256 = "0ynpyn0l77m94b50g7ysl795nvam3ra65wx5zb46nxspgbf6wnkh";
|
2010-07-28 19:01:17 +01:00
|
|
|
};
|
2008-12-20 01:20:35 +00:00
|
|
|
|
2018-11-11 21:20:41 +00:00
|
|
|
nativeBuildInputs = [ pkgconfig python makeWrapper wafHook ];
|
2017-09-18 22:15:26 +01:00
|
|
|
buildInputs = [ libsamplerate libsndfile readline eigen celt
|
2015-04-26 04:53:47 +01:00
|
|
|
optDbus optPythonDBus optLibffado optAlsaLib optLibopus
|
2019-04-30 02:32:12 +01:00
|
|
|
aften
|
|
|
|
] ++ optionals stdenv.isDarwin [
|
|
|
|
AudioUnit CoreAudio Accelerate cf-private libobjc
|
|
|
|
];
|
2017-09-18 22:15:26 +01:00
|
|
|
|
|
|
|
prePatch = ''
|
|
|
|
substituteInPlace svnversion_regenerate.sh \
|
|
|
|
--replace /bin/bash ${bash}/bin/bash
|
|
|
|
'';
|
|
|
|
|
2019-04-30 02:32:12 +01:00
|
|
|
patches = [ (fetchpatch {
|
|
|
|
url = "https://github.com/jackaudio/jack2/commit/d851fada460d42508a6f82b19867f63853062583.patch";
|
|
|
|
sha256 = "1iwwxjzvgrj7dz3s8alzlhcgmcarjcbkrgvsmy6kafw21pyyw7hp";
|
|
|
|
}) ];
|
2012-10-01 21:26:51 +01:00
|
|
|
|
2019-04-10 04:44:37 +01:00
|
|
|
wafConfigureFlags = [
|
2018-11-11 21:20:41 +00:00
|
|
|
"--classic"
|
|
|
|
"--autostart=${if (optDbus != null) then "dbus" else "classic"}"
|
|
|
|
] ++ optional (optDbus != null) "--dbus"
|
|
|
|
++ optional (optLibffado != null) "--firewire"
|
|
|
|
++ optional (optAlsaLib != null) "--alsa";
|
2017-09-18 22:15:26 +01:00
|
|
|
|
2018-11-11 21:20:41 +00:00
|
|
|
postInstall = (if libOnly then ''
|
2015-04-26 04:53:47 +01:00
|
|
|
rm -rf $out/{bin,share}
|
|
|
|
rm -rf $out/lib/{jack,libjacknet*,libjackserver*}
|
|
|
|
'' else ''
|
2011-05-09 21:49:51 +01:00
|
|
|
wrapProgram $out/bin/jack_control --set PYTHONPATH $PYTHONPATH
|
2015-04-26 04:53:47 +01:00
|
|
|
'');
|
2011-05-09 21:49:51 +01:00
|
|
|
|
2015-04-26 04:53:47 +01:00
|
|
|
meta = {
|
2011-05-09 21:49:51 +01:00
|
|
|
description = "JACK audio connection kit, version 2 with jackdbus";
|
2017-08-01 21:03:30 +01:00
|
|
|
homepage = http://jackaudio.org;
|
2011-05-09 21:49:51 +01:00
|
|
|
license = licenses.gpl2Plus;
|
2015-04-26 04:53:47 +01:00
|
|
|
platforms = platforms.unix;
|
2019-01-26 10:01:09 +00:00
|
|
|
maintainers = with maintainers; [ goibhniu ];
|
2010-07-28 19:01:17 +01:00
|
|
|
};
|
2008-12-20 01:20:35 +00:00
|
|
|
}
|