2021-01-17 02:30:45 +00:00
|
|
|
{ lib, stdenv, fetchFromGitHub, pkg-config, python3Packages, makeWrapper
|
2017-06-14 23:47:09 +00:00
|
|
|
, bash, libsamplerate, libsndfile, readline, eigen, celt
|
2019-05-18 08:08:59 +00:00
|
|
|
, wafHook
|
2017-09-18 21:15:26 +00:00
|
|
|
# Darwin Dependencies
|
2019-06-19 21:22:08 +00:00
|
|
|
, aften, AudioUnit, CoreAudio, libobjc, Accelerate
|
2012-04-08 00:00:03 +00:00
|
|
|
|
2015-04-26 03:53:47 +00:00
|
|
|
# Optional Dependencies
|
2016-08-16 20:51:21 +00:00
|
|
|
, dbus ? null, libffado ? null, alsaLib ? null
|
2015-04-26 03:53:47 +00:00
|
|
|
, libopus ? null
|
2010-07-28 18:01:17 +00:00
|
|
|
|
2015-04-26 03:53:47 +00:00
|
|
|
# Extra options
|
|
|
|
, prefix ? ""
|
|
|
|
}:
|
|
|
|
|
2021-01-15 13:21:58 +00:00
|
|
|
with lib;
|
2015-04-26 03:53:47 +00:00
|
|
|
let
|
2019-11-19 18:52:16 +00:00
|
|
|
inherit (python3Packages) python dbus-python;
|
2021-01-15 13:21:58 +00:00
|
|
|
shouldUsePkg = pkg: if pkg != null && lib.any (lib.meta.platformMatch stdenv.hostPlatform) pkg.meta.platforms then pkg else null;
|
2015-06-01 18:52:03 +00:00
|
|
|
|
2015-04-26 03:53:47 +00:00
|
|
|
libOnly = prefix == "lib";
|
|
|
|
|
2017-09-18 21:15:26 +00:00
|
|
|
optDbus = if stdenv.isDarwin then null else shouldUsePkg dbus;
|
2016-08-16 20:51:21 +00:00
|
|
|
optPythonDBus = if libOnly then null else shouldUsePkg dbus-python;
|
2015-04-26 03:53:47 +00:00
|
|
|
optLibffado = if libOnly then null else shouldUsePkg libffado;
|
|
|
|
optAlsaLib = if libOnly then null else shouldUsePkg alsaLib;
|
|
|
|
optLibopus = shouldUsePkg libopus;
|
|
|
|
in
|
2011-05-09 20:49:51 +00:00
|
|
|
stdenv.mkDerivation rec {
|
2015-04-26 03:53:47 +00:00
|
|
|
name = "${prefix}jack2-${version}";
|
2021-01-22 14:36:27 +00:00
|
|
|
version = "1.9.17";
|
2010-07-28 18:01:17 +00:00
|
|
|
|
2015-04-26 03:53:47 +00:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "jackaudio";
|
|
|
|
repo = "jack2";
|
2015-08-31 07:42:31 +00:00
|
|
|
rev = "v${version}";
|
2021-01-22 14:36:27 +00:00
|
|
|
sha256 = "sha256-T6UJpLsXrsIL3HaChfVP52w0v9DCs/sJqty2/kAWNfE=";
|
2010-07-28 18:01:17 +00:00
|
|
|
};
|
2008-12-20 01:20:35 +00:00
|
|
|
|
2021-01-17 02:30:45 +00:00
|
|
|
nativeBuildInputs = [ pkg-config python makeWrapper wafHook ];
|
2017-09-18 21:15:26 +00:00
|
|
|
buildInputs = [ libsamplerate libsndfile readline eigen celt
|
2015-04-26 03:53:47 +00:00
|
|
|
optDbus optPythonDBus optLibffado optAlsaLib optLibopus
|
2019-04-30 01:32:12 +00:00
|
|
|
] ++ optionals stdenv.isDarwin [
|
2019-06-19 21:22:08 +00:00
|
|
|
aften AudioUnit CoreAudio Accelerate libobjc
|
2019-04-30 01:32:12 +00:00
|
|
|
];
|
2017-09-18 21:15:26 +00:00
|
|
|
|
|
|
|
prePatch = ''
|
|
|
|
substituteInPlace svnversion_regenerate.sh \
|
|
|
|
--replace /bin/bash ${bash}/bin/bash
|
|
|
|
'';
|
|
|
|
|
2021-02-08 14:49:10 +00:00
|
|
|
PKGCONFIG = "${stdenv.cc.targetPrefix}pkg-config";
|
|
|
|
|
|
|
|
dontAddWafCrossFlags = "true";
|
2019-04-10 03:44:37 +00: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 21:15:26 +00:00
|
|
|
|
2018-11-11 21:20:41 +00:00
|
|
|
postInstall = (if libOnly then ''
|
2015-04-26 03:53:47 +00:00
|
|
|
rm -rf $out/{bin,share}
|
|
|
|
rm -rf $out/lib/{jack,libjacknet*,libjackserver*}
|
|
|
|
'' else ''
|
2011-05-09 20:49:51 +00:00
|
|
|
wrapProgram $out/bin/jack_control --set PYTHONPATH $PYTHONPATH
|
2015-04-26 03:53:47 +00:00
|
|
|
'');
|
2011-05-09 20:49:51 +00:00
|
|
|
|
2015-04-26 03:53:47 +00:00
|
|
|
meta = {
|
2011-05-09 20:49:51 +00:00
|
|
|
description = "JACK audio connection kit, version 2 with jackdbus";
|
2020-04-01 01:11:51 +00:00
|
|
|
homepage = "https://jackaudio.org";
|
2011-05-09 20:49:51 +00:00
|
|
|
license = licenses.gpl2Plus;
|
2015-04-26 03:53:47 +00:00
|
|
|
platforms = platforms.unix;
|
2019-01-26 10:01:09 +00:00
|
|
|
maintainers = with maintainers; [ goibhniu ];
|
2010-07-28 18:01:17 +00:00
|
|
|
};
|
2008-12-20 01:20:35 +00:00
|
|
|
}
|