nixpkgs/pkgs/misc/jackaudio/default.nix

83 lines
2.3 KiB
Nix
Raw Normal View History

{ stdenv, fetchFromGitHub, fetchpatch, pkgconfig, python2Packages, makeWrapper
, bash, libsamplerate, libsndfile, readline
2015-04-26 03:53:47 +00:00
# Optional Dependencies
, dbus ? null, libffado ? null, alsaLib ? null
2015-04-26 03:53:47 +00:00
, libopus ? null
2015-04-26 03:53:47 +00:00
# Extra options
, prefix ? ""
}:
with stdenv.lib;
let
2016-10-17 12:16:14 +00:00
inherit (python2Packages) python dbus-python;
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 dbus-python;
2015-04-26 03:53:47 +00:00
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}";
version = "1.9.10";
2015-04-26 03:53:47 +00:00
src = fetchFromGitHub {
owner = "jackaudio";
repo = "jack2";
rev = "v${version}";
sha256 = "1a2213l7x6sgqg2hq3yhnpvvvqyskhsmx8j3z0jgjsqwz9xa3wbr";
};
2015-04-26 03:53:47 +00:00
nativeBuildInputs = [ pkgconfig python makeWrapper ];
buildInputs = [ python libsamplerate libsndfile readline
2015-04-26 03:53:47 +00:00
optDbus optPythonDBus optLibffado optAlsaLib optLibopus
];
prePatch = ''
substituteInPlace svnversion_regenerate.sh --replace /bin/bash ${bash}/bin/bash
'';
patches = [
./jack-gcc5.patch
(fetchpatch {
url = "https://github.com/jackaudio/jack2/commit/ff1ed2c4524095055140370c1008a2d9cccc5645.patch";
sha256 = "0vywakbmlskvs9ginij9ilk39wjyzg7w6cf1qxp11hb0hj69fir5";
})
];
configurePhase = ''
2015-04-26 03:53:47 +00: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"} \
'';
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 ];
};
}