2012-04-08 02:00:03 +02:00
|
|
|
{ stdenv, fetchurl, alsaLib, dbus, expat, libsamplerate
|
|
|
|
, libsndfile, makeWrapper, pkgconfig, python, pythonDBus
|
2013-02-03 17:22:43 +01:00
|
|
|
, firewireSupport ? false, ffado ? null, bash }:
|
2012-04-08 02:00:03 +02:00
|
|
|
|
|
|
|
assert firewireSupport -> ffado != null;
|
2010-07-28 20:01:17 +02:00
|
|
|
|
2011-05-09 22:49:51 +02:00
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "jackdbus-${version}";
|
2013-02-03 17:22:43 +01:00
|
|
|
version = "1.9.9.5";
|
2010-07-28 20:01:17 +02:00
|
|
|
|
|
|
|
src = fetchurl {
|
2012-10-18 14:16:34 +02:00
|
|
|
urls = [
|
2013-02-03 17:22:43 +01:00
|
|
|
https://dl.dropbox.com/u/28869550/jack-1.9.9.5.tar.bz2
|
2012-10-18 14:16:34 +02:00
|
|
|
];
|
2013-02-03 17:22:43 +01:00
|
|
|
sha256 = "1ggba69jsfg7dmjzlyqz58y2wa92lm3vwdy4r15bs7mvxb65mvv5";
|
2010-07-28 20:01:17 +02:00
|
|
|
};
|
2008-12-20 02:20:35 +01:00
|
|
|
|
2012-04-08 02:00:03 +02:00
|
|
|
buildInputs =
|
|
|
|
[ alsaLib dbus expat libsamplerate libsndfile makeWrapper
|
|
|
|
pkgconfig python pythonDBus
|
|
|
|
] ++ (stdenv.lib.optional firewireSupport ffado);
|
2011-05-09 22:49:51 +02:00
|
|
|
|
2013-02-03 17:22:43 +01:00
|
|
|
patchPhase = ''
|
|
|
|
substituteInPlace svnversion_regenerate.sh --replace /bin/bash ${bash}/bin/bash
|
|
|
|
'';
|
2012-10-01 22:26:51 +02:00
|
|
|
|
2012-04-08 02:00:03 +02:00
|
|
|
configurePhase = ''
|
2012-04-08 14:03:15 +02:00
|
|
|
python waf configure --prefix=$out --dbus --alsa ${if firewireSupport then "--firewire" else ""}
|
2012-04-08 02:00:03 +02:00
|
|
|
'';
|
2011-05-09 22:49:51 +02:00
|
|
|
|
2012-03-17 23:03:15 +01:00
|
|
|
buildPhase = "python waf build";
|
2011-05-09 22:49:51 +02:00
|
|
|
|
|
|
|
installPhase = ''
|
|
|
|
python waf install
|
|
|
|
wrapProgram $out/bin/jack_control --set PYTHONPATH $PYTHONPATH
|
2009-09-21 11:58:24 +02:00
|
|
|
'';
|
2011-05-09 22:49:51 +02:00
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "JACK audio connection kit, version 2 with jackdbus";
|
2010-07-28 20:01:17 +02:00
|
|
|
homepage = "http://jackaudio.org";
|
2011-05-09 22:49:51 +02:00
|
|
|
license = licenses.gpl2Plus;
|
|
|
|
platforms = platforms.linux;
|
|
|
|
maintainers = [ maintainers.goibhniu ];
|
2010-07-28 20:01:17 +02:00
|
|
|
};
|
2008-12-20 02:20:35 +01:00
|
|
|
}
|