nixpkgs/pkgs/misc/jackaudio/default.nix

93 lines
2.9 KiB
Nix
Raw Normal View History

2017-06-15 01:47:09 +02:00
{ stdenv, fetchFromGitHub, pkgconfig, python2Packages, makeWrapper
, bash, libsamplerate, libsndfile, readline, eigen, celt
2017-09-18 23:15:26 +02:00
# Darwin Dependencies
, aften, AudioToolbox, CoreAudio, CoreFoundation
2015-04-26 05:53:47 +02:00
# Optional Dependencies
, dbus ? null, libffado ? null, alsaLib ? null
2015-04-26 05:53:47 +02:00
, libopus ? null
2017-09-18 23:15:26 +02:00
, darwin
2015-04-26 05:53:47 +02:00
# Extra options
, prefix ? ""
}:
with stdenv.lib;
let
2016-10-17 14:16:14 +02:00
inherit (python2Packages) python dbus-python;
shouldUsePkg = pkg: if pkg != null && stdenv.lib.any (x: x == stdenv.system) pkg.meta.platforms then pkg else null;
2015-04-26 05:53:47 +02:00
libOnly = prefix == "lib";
2017-09-18 23:15:26 +02:00
optDbus = if stdenv.isDarwin then null else shouldUsePkg dbus;
optPythonDBus = if libOnly then null else shouldUsePkg dbus-python;
2015-04-26 05:53:47 +02: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 05:53:47 +02:00
name = "${prefix}jack2-${version}";
2017-06-15 01:47:09 +02:00
version = "1.9.11-RC1";
2015-04-26 05:53:47 +02:00
src = fetchFromGitHub {
owner = "jackaudio";
repo = "jack2";
rev = "v${version}";
2017-06-15 01:47:09 +02:00
sha256 = "0i708ar3ll5p8yj0h7ffg84nrn49ap47l2yy75rxyw30cyywhxp4";
};
2015-04-26 05:53:47 +02:00
nativeBuildInputs = [ pkgconfig python makeWrapper ];
2017-09-18 23:15:26 +02:00
buildInputs = [ libsamplerate libsndfile readline eigen celt
2015-04-26 05:53:47 +02:00
optDbus optPythonDBus optLibffado optAlsaLib optLibopus
2017-09-18 23:15:26 +02:00
] ++ stdenv.lib.optionals stdenv.isDarwin [ aften AudioToolbox CoreAudio CoreFoundation ];
2017-09-18 23:15:26 +02:00
# CoreFoundation 10.10 doesn't include CFNotificationCenter.h yet.
patches = stdenv.lib.optionals stdenv.isDarwin [ ./clang.patch ./darwin-cf.patch ];
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 = stdenv.lib.optionalString stdenv.isDarwin ''
export NIX_CFLAGS_COMPILE="-F${CoreFoundation}/Library/Frameworks $NIX_CFLAGS_COMPILE"
'';
configurePhase = ''
2017-09-18 23:15:26 +02:00
runHook preConfigure
2015-04-26 05:53:47 +02:00
python waf configure --prefix=$out \
${optionalString (optDbus != null) "--dbus"} \
--classic \
${optionalString (optLibffado != null) "--firewire"} \
${optionalString (optAlsaLib != null) "--alsa"} \
--autostart=${if (optDbus != null) then "dbus" else "classic"} \
2017-09-18 23:15:26 +02:00
runHook postConfigure
'';
2015-04-26 05:53:47 +02:00
buildPhase = ''
python waf build
'';
installPhase = ''
python waf install
2015-04-26 05:53:47 +02:00
'' + (if libOnly then ''
rm -rf $out/{bin,share}
rm -rf $out/lib/{jack,libjacknet*,libjackserver*}
'' else ''
wrapProgram $out/bin/jack_control --set PYTHONPATH $PYTHONPATH
2015-04-26 05:53:47 +02:00
'');
2015-04-26 05:53:47 +02:00
meta = {
description = "JACK audio connection kit, version 2 with jackdbus";
homepage = http://jackaudio.org;
license = licenses.gpl2Plus;
2015-04-26 05:53:47 +02:00
platforms = platforms.unix;
maintainers = with maintainers; [ goibhniu wkennington ];
};
}