2015-04-26 06:53:47 +03:00
|
|
|
{ stdenv, fetchFromGitHub, pkgconfig, python, makeWrapper
|
2015-05-03 20:46:10 +03:00
|
|
|
, bash, libsamplerate, libsndfile, readline
|
2012-04-08 04:00:03 +04:00
|
|
|
|
2015-04-26 06:53:47 +03:00
|
|
|
# Optional Dependencies
|
|
|
|
, dbus ? null, pythonDBus ? null, libffado ? null, alsaLib ? null
|
|
|
|
, libopus ? null
|
2010-07-28 22:01:17 +04:00
|
|
|
|
2015-04-26 06:53:47 +03:00
|
|
|
# Extra options
|
|
|
|
, prefix ? ""
|
|
|
|
}:
|
|
|
|
|
|
|
|
with stdenv.lib;
|
|
|
|
let
|
2015-06-01 21:52:03 +03:00
|
|
|
shouldUsePkg = pkg: if pkg != null && stdenv.lib.any (x: x == stdenv.system) pkg.meta.platforms then pkg else null;
|
|
|
|
|
2015-04-26 06:53:47 +03:00
|
|
|
libOnly = prefix == "lib";
|
|
|
|
|
|
|
|
optDbus = shouldUsePkg dbus;
|
|
|
|
optPythonDBus = if libOnly then null else shouldUsePkg pythonDBus;
|
|
|
|
optLibffado = if libOnly then null else shouldUsePkg libffado;
|
|
|
|
optAlsaLib = if libOnly then null else shouldUsePkg alsaLib;
|
|
|
|
optLibopus = shouldUsePkg libopus;
|
|
|
|
in
|
2011-05-10 00:49:51 +04:00
|
|
|
stdenv.mkDerivation rec {
|
2015-04-26 06:53:47 +03:00
|
|
|
name = "${prefix}jack2-${version}";
|
2015-06-23 09:42:10 +03:00
|
|
|
version = "2015-06-02";
|
2010-07-28 22:01:17 +04:00
|
|
|
|
2015-04-26 06:53:47 +03:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "jackaudio";
|
|
|
|
repo = "jack2";
|
2015-06-23 09:42:10 +03:00
|
|
|
rev = "b5bceb50c708f55cc569c3e1f0f1876a49fbdade";
|
|
|
|
sha256 = "0dc00729wkbxnbhnmyfam1wdwd5m8jvrjccypb32bj072jqaqaw7";
|
2010-07-28 22:01:17 +04:00
|
|
|
};
|
2008-12-20 04:20:35 +03:00
|
|
|
|
2015-04-26 06:53:47 +03:00
|
|
|
nativeBuildInputs = [ pkgconfig python makeWrapper ];
|
|
|
|
buildInputs = [
|
|
|
|
python
|
|
|
|
|
2015-05-03 20:46:10 +03:00
|
|
|
libsamplerate libsndfile readline
|
2015-04-26 06:53:47 +03:00
|
|
|
|
|
|
|
optDbus optPythonDBus optLibffado optAlsaLib optLibopus
|
|
|
|
];
|
2011-05-10 00:49:51 +04:00
|
|
|
|
2013-02-03 20:22:43 +04:00
|
|
|
patchPhase = ''
|
|
|
|
substituteInPlace svnversion_regenerate.sh --replace /bin/bash ${bash}/bin/bash
|
|
|
|
'';
|
2012-10-02 00:26:51 +04:00
|
|
|
|
2012-04-08 04:00:03 +04:00
|
|
|
configurePhase = ''
|
2015-04-26 06:53:47 +03:00
|
|
|
python waf configure --prefix=$out \
|
|
|
|
${optionalString (optDbus != null) "--dbus"} \
|
|
|
|
--classic \
|
|
|
|
--profile \
|
|
|
|
${optionalString (optLibffado != null) "--firewire"} \
|
|
|
|
${optionalString (optAlsaLib != null) "--alsa"} \
|
|
|
|
--autostart=${if (optDbus != null) then "dbus" else "classic"} \
|
2012-04-08 04:00:03 +04:00
|
|
|
'';
|
2011-05-10 00:49:51 +04:00
|
|
|
|
2015-04-26 06:53:47 +03:00
|
|
|
buildPhase = ''
|
|
|
|
python waf build
|
|
|
|
'';
|
2011-05-10 00:49:51 +04:00
|
|
|
|
|
|
|
installPhase = ''
|
|
|
|
python waf install
|
2015-04-26 06:53:47 +03:00
|
|
|
'' + (if libOnly then ''
|
|
|
|
rm -rf $out/{bin,share}
|
|
|
|
rm -rf $out/lib/{jack,libjacknet*,libjackserver*}
|
|
|
|
'' else ''
|
2011-05-10 00:49:51 +04:00
|
|
|
wrapProgram $out/bin/jack_control --set PYTHONPATH $PYTHONPATH
|
2015-04-26 06:53:47 +03:00
|
|
|
'');
|
2011-05-10 00:49:51 +04:00
|
|
|
|
2015-04-26 06:53:47 +03:00
|
|
|
meta = {
|
2011-05-10 00:49:51 +04:00
|
|
|
description = "JACK audio connection kit, version 2 with jackdbus";
|
2010-07-28 22:01:17 +04:00
|
|
|
homepage = "http://jackaudio.org";
|
2011-05-10 00:49:51 +04:00
|
|
|
license = licenses.gpl2Plus;
|
2015-04-26 06:53:47 +03:00
|
|
|
platforms = platforms.unix;
|
|
|
|
maintainers = with maintainers; [ goibhniu wkennington ];
|
2010-07-28 22:01:17 +04:00
|
|
|
};
|
2008-12-20 04:20:35 +03:00
|
|
|
}
|