mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-24 16:03:23 +00:00
Merge pull request #157798 from NickCao/vamp-cross
vamp-plugin-sdk: fix cross compilation
This commit is contained in:
commit
444e78082e
@ -18,6 +18,10 @@ stdenv.mkDerivation rec {
|
||||
buildInputs = [ libsndfile ];
|
||||
|
||||
enableParallelBuilding = true;
|
||||
makeFlags = [
|
||||
"AR:=$(AR)"
|
||||
"RANLIB:=$(RANLIB)"
|
||||
] ++ lib.optional (stdenv.buildPlatform != stdenv.hostPlatform) "-o test";
|
||||
|
||||
meta = with lib; {
|
||||
description = "Audio processing plugin system for plugins that extract descriptive information from audio data";
|
||||
|
Loading…
Reference in New Issue
Block a user