nixpkgs/pkgs/misc/jackaudio/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

85 lines
2.5 KiB
Nix
Raw Normal View History

2021-01-17 02:30:45 +00:00
{ lib, stdenv, fetchFromGitHub, pkg-config, python3Packages, makeWrapper
, libsamplerate, libsndfile, readline, eigen, celt
2023-09-03 00:24:44 +00:00
, wafHook
2017-09-18 21:15:26 +00:00
# Darwin Dependencies
2019-06-19 21:22:08 +00:00
, aften, AudioUnit, CoreAudio, libobjc, Accelerate
2015-04-26 03:53:47 +00:00
# Optional Dependencies
, dbus ? null, libffado ? null, alsa-lib ? null
2015-04-26 03:53:47 +00:00
, libopus ? null
2015-04-26 03:53:47 +00:00
# Extra options
, prefix ? ""
, testers
2015-04-26 03:53:47 +00:00
}:
let
inherit (python3Packages) python dbus-python;
2021-02-25 16:21:13 +00:00
shouldUsePkg = pkg: if pkg != null && lib.meta.availableOn stdenv.hostPlatform pkg then pkg else null;
2015-04-26 03:53:47 +00:00
libOnly = prefix == "lib";
2017-09-18 21:15:26 +00:00
optDbus = if stdenv.isDarwin then null else 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 alsa-lib;
2015-04-26 03:53:47 +00:00
optLibopus = shouldUsePkg libopus;
in
stdenv.mkDerivation (finalAttrs: {
2021-09-05 07:06:14 +00:00
pname = "${prefix}jack2";
2023-08-18 21:00:59 +00:00
version = "1.9.22";
2015-04-26 03:53:47 +00:00
src = fetchFromGitHub {
owner = "jackaudio";
repo = "jack2";
rev = "v${finalAttrs.version}";
2023-08-18 21:00:59 +00:00
sha256 = "sha256-Cslfys5fcZDy0oee9/nM5Bd1+Cg4s/ayXjJJOSQCL4E=";
};
outputs = [ "out" "dev" ];
2023-09-03 00:24:44 +00:00
nativeBuildInputs = [ pkg-config python makeWrapper wafHook ];
2017-09-18 21:15:26 +00:00
buildInputs = [ libsamplerate libsndfile readline eigen celt
2015-04-26 03:53:47 +00:00
optDbus optPythonDBus optLibffado optAlsaLib optLibopus
] ++ lib.optionals stdenv.isDarwin [
2019-06-19 21:22:08 +00:00
aften AudioUnit CoreAudio Accelerate libobjc
];
2017-09-18 21:15:26 +00:00
postPatch = ''
patchShebangs --build svnversion_regenerate.sh
2017-09-18 21:15:26 +00:00
'';
dontAddWafCrossFlags = true;
wafConfigureFlags = [
"--classic"
"--autostart=${if (optDbus != null) then "dbus" else "classic"}"
] ++ lib.optional (optDbus != null) "--dbus"
++ lib.optional (optLibffado != null) "--firewire"
++ lib.optional (optAlsaLib != null) "--alsa";
2017-09-18 21:15:26 +00:00
postInstall = (if libOnly then ''
2015-04-26 03:53:47 +00:00
rm -rf $out/{bin,share}
rm -rf $out/lib/{jack,libjacknet*,libjackserver*}
'' else lib.optionalString (optDbus != null) ''
wrapProgram $out/bin/jack_control --set PYTHONPATH $PYTHONPATH
2015-04-26 03:53:47 +00:00
'');
postFixup = ''
substituteInPlace "$dev/lib/pkgconfig/jack.pc" \
--replace "$out/include" "$dev/include"
'';
passthru.tests.pkg-config = testers.testMetaPkgConfig finalAttrs.finalPackage;
meta = with lib; {
description = "JACK audio connection kit, version 2 with jackdbus";
homepage = "https://jackaudio.org";
license = licenses.gpl2Plus;
pkgConfigModules = [ "jack" ];
2015-04-26 03:53:47 +00:00
platforms = platforms.unix;
maintainers = with maintainers; [ goibhniu ];
};
})