mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-15 22:36:23 +01:00
67641d0589
These flags are not part of waf, they're custom flags that are not widely implemented. More packages are broken because of these flags being added than actually recognise them. Of the packages in Nixpkgs that directly depend on wafHook that we can attempt to cross compile (i.e. all their dependencies cross compile), 5 already successfully cross compile and recognise these flags, 2 already successfully cross compile because they have been opted out of these flags, 3 don't cross compile successfully for reasons unrelated to these flags, and for the remaining 7, the only thing stopping them cross compiling successfully is that they are being passed these flags that they don't recognise. All of the five successfully cross-compiling packages that do recognise these flags are samba projects: ldb, talloc, tdb, tevent, and samba4. So this isn't a general waf convention, just a samba one. It therefore doesn't make sense to set these flags by default. They should just be included in the expressions for each samba project, like all the other quirks common to samba build systems. This change fixes cross compilation of the following packages: blockhash ganv ndn-cxx mda_lv2 pflask raul saldl
82 lines
2.4 KiB
Nix
82 lines
2.4 KiB
Nix
{ lib, stdenv, fetchFromGitHub, pkg-config, python3Packages, makeWrapper
|
|
, libsamplerate, libsndfile, readline, eigen, celt
|
|
, wafHook
|
|
# Darwin Dependencies
|
|
, aften, AudioUnit, CoreAudio, libobjc, Accelerate
|
|
|
|
# Optional Dependencies
|
|
, dbus ? null, libffado ? null, alsa-lib ? null
|
|
, libopus ? null
|
|
|
|
# Extra options
|
|
, prefix ? ""
|
|
|
|
, testers
|
|
}:
|
|
|
|
let
|
|
inherit (python3Packages) python dbus-python;
|
|
shouldUsePkg = pkg: if pkg != null && lib.meta.availableOn stdenv.hostPlatform pkg then pkg else null;
|
|
|
|
libOnly = prefix == "lib";
|
|
|
|
optDbus = if stdenv.isDarwin then null else shouldUsePkg dbus;
|
|
optPythonDBus = if libOnly then null else shouldUsePkg dbus-python;
|
|
optLibffado = if libOnly then null else shouldUsePkg libffado;
|
|
optAlsaLib = if libOnly then null else shouldUsePkg alsa-lib;
|
|
optLibopus = shouldUsePkg libopus;
|
|
in
|
|
stdenv.mkDerivation (finalAttrs: {
|
|
pname = "${prefix}jack2";
|
|
version = "1.9.22";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "jackaudio";
|
|
repo = "jack2";
|
|
rev = "v${finalAttrs.version}";
|
|
sha256 = "sha256-Cslfys5fcZDy0oee9/nM5Bd1+Cg4s/ayXjJJOSQCL4E=";
|
|
};
|
|
|
|
outputs = [ "out" "dev" ];
|
|
|
|
nativeBuildInputs = [ pkg-config python makeWrapper wafHook ];
|
|
buildInputs = [ libsamplerate libsndfile readline eigen celt
|
|
optDbus optPythonDBus optLibffado optAlsaLib optLibopus
|
|
] ++ lib.optionals stdenv.isDarwin [
|
|
aften AudioUnit CoreAudio Accelerate libobjc
|
|
];
|
|
|
|
postPatch = ''
|
|
patchShebangs --build svnversion_regenerate.sh
|
|
'';
|
|
|
|
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";
|
|
|
|
postInstall = (if libOnly then ''
|
|
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
|
|
'');
|
|
|
|
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" ];
|
|
platforms = platforms.unix;
|
|
maintainers = with maintainers; [ goibhniu ];
|
|
};
|
|
})
|