nixpkgs/pkgs/misc/jackaudio/default.nix

76 lines
2.2 KiB
Nix
Raw Normal View History

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
, wafHook
2017-09-18 21:15:26 +00:00
# Darwin Dependencies
2019-06-19 21:22:08 +00:00
, aften, AudioUnit, CoreAudio, libobjc, Accelerate
2015-04-26 03:53:47 +00:00
# Optional Dependencies
, dbus ? null, libffado ? null, alsaLib ? null
2015-04-26 03:53:47 +00:00
, libopus ? null
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
inherit (python3Packages) python dbus-python;
2021-02-25 16:21:13 +00:00
shouldUsePkg = pkg: if pkg != null && lib.meta.availableOn stdenv.hostPlatform pkg then pkg else null;
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;
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
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";
2015-04-26 03:53:47 +00:00
src = fetchFromGitHub {
owner = "jackaudio";
repo = "jack2";
rev = "v${version}";
2021-01-22 14:36:27 +00:00
sha256 = "sha256-T6UJpLsXrsIL3HaChfVP52w0v9DCs/sJqty2/kAWNfE=";
};
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
] ++ optionals stdenv.isDarwin [
2019-06-19 21:22:08 +00:00
aften AudioUnit CoreAudio Accelerate libobjc
];
2017-09-18 21:15:26 +00:00
prePatch = ''
substituteInPlace svnversion_regenerate.sh \
--replace /bin/bash ${bash}/bin/bash
'';
PKGCONFIG = "${stdenv.cc.targetPrefix}pkg-config";
dontAddWafCrossFlags = "true";
wafConfigureFlags = [
"--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
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 ''
wrapProgram $out/bin/jack_control --set PYTHONPATH $PYTHONPATH
2015-04-26 03:53:47 +00:00
'');
2015-04-26 03:53:47 +00:00
meta = {
description = "JACK audio connection kit, version 2 with jackdbus";
homepage = "https://jackaudio.org";
license = licenses.gpl2Plus;
2015-04-26 03:53:47 +00:00
platforms = platforms.unix;
maintainers = with maintainers; [ goibhniu ];
};
}