jack2: Refactor
This commit is contained in:
parent
7fa5873cd8
commit
418963ef63
@ -1,45 +1,78 @@
|
|||||||
{ stdenv, fetchurl, alsaLib, dbus, expat, libsamplerate
|
{ stdenv, fetchFromGitHub, pkgconfig, python, makeWrapper
|
||||||
, libsndfile, makeWrapper, pkgconfig, python, pythonDBus
|
, bash, libsamplerate, readline
|
||||||
, firewireSupport ? false, ffado ? null, bash }:
|
|
||||||
|
|
||||||
assert firewireSupport -> ffado != null;
|
# Optional Dependencies
|
||||||
|
, dbus ? null, pythonDBus ? null, libffado ? null, alsaLib ? null
|
||||||
|
, libopus ? null
|
||||||
|
|
||||||
|
# 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;
|
||||||
|
|
||||||
|
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 {
|
stdenv.mkDerivation rec {
|
||||||
name = "jack2-${version}";
|
name = "${prefix}jack2-${version}";
|
||||||
version = "1.9.10";
|
version = "1.9.10";
|
||||||
|
|
||||||
src = fetchurl {
|
src = fetchFromGitHub {
|
||||||
urls = [
|
owner = "jackaudio";
|
||||||
https://github.com/jackaudio/jack2/archive/v1.9.10.tar.gz
|
repo = "jack2";
|
||||||
];
|
rev = "v${version}";
|
||||||
sha256 = "03b0iiyk3ng3vh5s8gaqwn565vik7910p56mlbk512bw3dhbdwc8";
|
sha256 = "1a2213l7x6sgqg2hq3yhnpvvvqyskhsmx8j3z0jgjsqwz9xa3wbr";
|
||||||
};
|
};
|
||||||
|
|
||||||
buildInputs =
|
nativeBuildInputs = [ pkgconfig python makeWrapper ];
|
||||||
[ alsaLib dbus expat libsamplerate libsndfile makeWrapper
|
buildInputs = [
|
||||||
pkgconfig python pythonDBus
|
python
|
||||||
] ++ (stdenv.lib.optional firewireSupport ffado);
|
|
||||||
|
libsamplerate readline
|
||||||
|
|
||||||
|
optDbus optPythonDBus optLibffado optAlsaLib optLibopus
|
||||||
|
];
|
||||||
|
|
||||||
patchPhase = ''
|
patchPhase = ''
|
||||||
substituteInPlace svnversion_regenerate.sh --replace /bin/bash ${bash}/bin/bash
|
substituteInPlace svnversion_regenerate.sh --replace /bin/bash ${bash}/bin/bash
|
||||||
'';
|
'';
|
||||||
|
|
||||||
configurePhase = ''
|
configurePhase = ''
|
||||||
python waf configure --prefix=$out --dbus --alsa ${if firewireSupport then "--firewire" else ""}
|
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"} \
|
||||||
'';
|
'';
|
||||||
|
|
||||||
buildPhase = "python waf build";
|
buildPhase = ''
|
||||||
|
python waf build
|
||||||
|
'';
|
||||||
|
|
||||||
installPhase = ''
|
installPhase = ''
|
||||||
python waf install
|
python waf install
|
||||||
|
'' + (if libOnly then ''
|
||||||
|
rm -rf $out/{bin,share}
|
||||||
|
rm -rf $out/lib/{jack,libjacknet*,libjackserver*}
|
||||||
|
'' else ''
|
||||||
wrapProgram $out/bin/jack_control --set PYTHONPATH $PYTHONPATH
|
wrapProgram $out/bin/jack_control --set PYTHONPATH $PYTHONPATH
|
||||||
'';
|
'');
|
||||||
|
|
||||||
meta = with stdenv.lib; {
|
meta = {
|
||||||
description = "JACK audio connection kit, version 2 with jackdbus";
|
description = "JACK audio connection kit, version 2 with jackdbus";
|
||||||
homepage = "http://jackaudio.org";
|
homepage = "http://jackaudio.org";
|
||||||
license = licenses.gpl2Plus;
|
license = licenses.gpl2Plus;
|
||||||
platforms = platforms.linux;
|
platforms = platforms.unix;
|
||||||
maintainers = [ maintainers.goibhniu ];
|
maintainers = with maintainers; [ goibhniu wkennington ];
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
@ -13891,7 +13891,10 @@ let
|
|||||||
# using the new configuration style proposal which is unstable
|
# using the new configuration style proposal which is unstable
|
||||||
jack1 = callPackage ../misc/jackaudio/jack1.nix { };
|
jack1 = callPackage ../misc/jackaudio/jack1.nix { };
|
||||||
|
|
||||||
jack2 = callPackage ../misc/jackaudio { };
|
jack2 = callPackage ../misc/jackaudio {
|
||||||
|
libopus = libopus.override { withCustomModes = true; };
|
||||||
|
};
|
||||||
|
libjack2 = jack2.override { prefix = "lib"; };
|
||||||
|
|
||||||
keynav = callPackage ../tools/X11/keynav { };
|
keynav = callPackage ../tools/X11/keynav { };
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user