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