1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00
nixpkgs/pkgs/misc/jackaudio/jack1.nix

41 lines
1.1 KiB
Nix
Raw Normal View History

2015-04-26 04:14:56 +01:00
{ stdenv, fetchurl, pkgconfig
2015-04-26 04:14:56 +01:00
# Optional Dependencies
, alsaLib ? null, db ? null, libuuid ? null, libffado ? null, celt ? null
}:
2015-04-26 04:14:56 +01:00
let
shouldUsePkg = pkg: if pkg != null && stdenv.lib.any (x: x == stdenv.system) pkg.meta.platforms then pkg else null;
2015-04-26 04:14:56 +01:00
optAlsaLib = shouldUsePkg alsaLib;
optDb = shouldUsePkg db;
optLibuuid = shouldUsePkg libuuid;
optLibffado = shouldUsePkg libffado;
optCelt = shouldUsePkg celt;
in
stdenv.mkDerivation rec {
name = "jack1-${version}";
version = "0.124.1";
src = fetchurl {
url = "http://jackaudio.org/downloads/jack-audio-connection-kit-${version}.tar.gz";
sha256 = "1mk1wnx33anp6haxfjjkfhwbaknfblsvj35nxvz0hvspcmhdyhpb";
};
configureFlags = ''
2015-04-26 04:14:56 +01:00
${if (optLibffado != null) then "--enable-firewire" else ""}
'';
2015-04-26 04:14:56 +01:00
nativeBuildInputs = [ pkgconfig ];
buildInputs = [ optAlsaLib optDb optLibffado optCelt ];
propagatedBuildInputs = [ optLibuuid ];
2015-04-26 04:14:56 +01:00
meta = with stdenv.lib; {
description = "JACK audio connection kit";
homepage = "http://jackaudio.org";
license = "GPL";
2015-04-26 04:14:56 +01:00
platforms = platforms.unix;
maintainers = with maintainers; [ wkennington ];
};
}