nixpkgs/pkgs/misc/jackaudio/default.nix

79 lines
2.1 KiB
Nix
Raw Normal View History

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