Updating to 0.121.3, adding optional FireWire support and replacing composableDerivation with mkDerivation
svn path=/nixpkgs/trunk/; revision=33666
This commit is contained in:
parent
bce9de06bd
commit
d989f361ac
@ -1,45 +1,27 @@
|
|||||||
# Perhaps we can get some ideas from here ? http://gentoo-wiki.com/HOWTO_Jack
|
{ stdenv, fetchurl, pkgconfig, alsaLib
|
||||||
# still much to test but it compiles now
|
, firewireSupport ? false, ffado ? null }:
|
||||||
|
|
||||||
{ composableDerivation, fetchurl, pkgconfig, alsaLib }:
|
assert firewireSupport -> ffado != null;
|
||||||
|
|
||||||
let inherit (composableDerivation) edf; in
|
stdenv.mkDerivation rec {
|
||||||
|
name = "jack-${version}";
|
||||||
composableDerivation.composableDerivation {} {
|
version = "0.121.3";
|
||||||
name = "jack-0.120.1";
|
|
||||||
|
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
url = "http://jackaudio.org/downloads/jack-audio-connection-kit-0.120.1.tar.gz";
|
url = "http://jackaudio.org/downloads/jack-audio-connection-kit-${version}.tar.gz";
|
||||||
sha256 = "02h8536c67059gq2vsl323kvy9jak9dp0syi1h58awlkbgzlg80d";
|
sha256 = "1ypa3gjwy4vmaskin0vczmmdwybckkl42wmkfabx3v5yx8yms2dp";
|
||||||
};
|
};
|
||||||
|
|
||||||
buildInputs = [ pkgconfig ];
|
preBuild = "echo ok";
|
||||||
|
|
||||||
flags =
|
configureFlags = ''
|
||||||
# FIXME: tidy up
|
${if firewireSupport then "--enable-firewire" else ""}
|
||||||
edf { name = "posix-shm"; } #use POSIX shm API
|
|
||||||
// edf { name = "timestamps"; } # allow clients to use the JACK timestamp API
|
|
||||||
// edf { name = "capabilities"; } #use libcap to gain realtime scheduling priviledges
|
|
||||||
// edf { name = "oldtrans"; } #remove old transport interfaces
|
|
||||||
// edf { name = "stripped-jackd"; } #strip jack before computing its md5 sum
|
|
||||||
// edf { name = "portaudio"; } #ignore PortAudio driver
|
|
||||||
// edf { name = "coreaudio"; } #ignore CoreAudio driver
|
|
||||||
// edf { name = "oss"; } #ignore OSS driver
|
|
||||||
// edf { name = "freebob"; } #ignore FreeBob driver
|
|
||||||
// edf { name = "alsa"; enable = { buildInputs = [ alsaLib ]; }; };
|
|
||||||
|
|
||||||
cfg = {
|
|
||||||
posix_shmSupport = true;
|
|
||||||
timestampsSupport = true;
|
|
||||||
alsaSupport = true;
|
|
||||||
};
|
|
||||||
|
|
||||||
# make sure the jackaudio is found by symlinking lib64 to lib
|
|
||||||
postInstall = ''
|
|
||||||
mkdir -p $out/lib
|
|
||||||
ln -s $out/lib{64,}/pkgconfig
|
|
||||||
'';
|
'';
|
||||||
|
|
||||||
|
buildInputs =
|
||||||
|
[ pkgconfig alsaLib
|
||||||
|
] ++ (stdenv.lib.optional firewireSupport ffado);
|
||||||
|
|
||||||
meta = {
|
meta = {
|
||||||
description = "JACK audio connection kit";
|
description = "JACK audio connection kit";
|
||||||
homepage = "http://jackaudio.org";
|
homepage = "http://jackaudio.org";
|
||||||
|
Loading…
x
Reference in New Issue
Block a user