nixpkgs/pkgs/misc/jackaudio/default.nix

82 lines
2.7 KiB
Nix
Raw Normal View History

2017-06-14 23:47:09 +00:00
{ stdenv, fetchFromGitHub, pkgconfig, python2Packages, makeWrapper
, bash, libsamplerate, libsndfile, readline, eigen, celt
, wafHook
2017-09-18 21:15:26 +00:00
# Darwin Dependencies
, aften, AudioToolbox, CoreAudio, CoreFoundation
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 ? ""
}:
with stdenv.lib;
let
2016-10-17 12:16:14 +00:00
inherit (python2Packages) python dbus-python;
shouldUsePkg = pkg: if pkg != null && stdenv.lib.any (stdenv.lib.meta.platformMatch stdenv.hostPlatform) pkg.meta.platforms 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}";
2018-01-05 22:13:32 +00:00
version = "1.9.12";
2015-04-26 03:53:47 +00:00
src = fetchFromGitHub {
owner = "jackaudio";
repo = "jack2";
rev = "v${version}";
2018-01-05 22:13:32 +00:00
sha256 = "0ynpyn0l77m94b50g7ysl795nvam3ra65wx5zb46nxspgbf6wnkh";
};
nativeBuildInputs = [ pkgconfig 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 [ aften AudioToolbox CoreAudio CoreFoundation ];
2017-09-18 21:15:26 +00:00
# CoreFoundation 10.10 doesn't include CFNotificationCenter.h yet.
patches = optionals stdenv.isDarwin [ ./darwin-cf.patch ];
2017-09-18 21:15:26 +00: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
preConfigure = optionalString stdenv.isDarwin ''
2017-09-18 21:15:26 +00:00
export NIX_CFLAGS_COMPILE="-F${CoreFoundation}/Library/Frameworks $NIX_CFLAGS_COMPILE"
'';
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 = http://jackaudio.org;
license = licenses.gpl2Plus;
2015-04-26 03:53:47 +00:00
platforms = platforms.unix;
maintainers = with maintainers; [ goibhniu ];
badPlatforms = [ "x86_64-darwin" ];
};
}