uboot: (firmwareOdroidC2/C4) don't invoke patch tool, use patches = [] instead
https://github.com/NixOS/nixpkgs/blob/master/pkgs/stdenv/generic/setup.sh#L948 this can do it nicely. Signed-off-by: Anton Arapov <anton@deadbeef.mx>
This commit is contained in:
commit
56de2bcd43
30691 changed files with 3076956 additions and 0 deletions
59
pkgs/development/libraries/portaudio/default.nix
Normal file
59
pkgs/development/libraries/portaudio/default.nix
Normal file
|
|
@ -0,0 +1,59 @@
|
|||
{ lib
|
||||
, stdenv
|
||||
, fetchurl
|
||||
, alsa-lib
|
||||
, pkg-config
|
||||
, AudioUnit
|
||||
, AudioToolbox
|
||||
, CoreAudio
|
||||
, CoreServices
|
||||
, Carbon }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "portaudio";
|
||||
version = "190700_20210406";
|
||||
|
||||
src = fetchurl {
|
||||
url = "http://files.portaudio.com/archives/pa_stable_v${version}.tgz";
|
||||
sha256 = "1vrdrd42jsnffh6rq8ap2c6fr4g9fcld89z649fs06bwqx1bzvs7";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [ pkg-config ];
|
||||
buildInputs = lib.optional (!stdenv.isDarwin) alsa-lib;
|
||||
|
||||
configureFlags = [ "--disable-mac-universal" "--enable-cxx" ];
|
||||
|
||||
NIX_CFLAGS_COMPILE = lib.optionalString stdenv.cc.isClang "-Wno-error=nullability-inferred-on-nested-type -Wno-error=nullability-completeness-on-arrays -Wno-error=implicit-const-int-float-conversion";
|
||||
|
||||
propagatedBuildInputs = lib.optionals stdenv.isDarwin [ AudioUnit AudioToolbox CoreAudio CoreServices Carbon ];
|
||||
|
||||
# Disable parallel build as it fails as:
|
||||
# make: *** No rule to make target '../../../lib/libportaudio.la',
|
||||
# needed by 'libportaudiocpp.la'. Stop.
|
||||
# Next release should address it with
|
||||
# https://github.com/PortAudio/portaudio/commit/28d2781d9216115543aa3f0a0ffb7b4ee0fac551.patch
|
||||
enableParallelBuilding = false;
|
||||
|
||||
# not sure why, but all the headers seem to be installed by the make install
|
||||
installPhase = ''
|
||||
make install
|
||||
'' + lib.optionalString (!stdenv.isDarwin) ''
|
||||
# fixup .pc file to find alsa library
|
||||
sed -i "s|-lasound|-L${alsa-lib.out}/lib -lasound|" "$out/lib/pkgconfig/"*.pc
|
||||
'' + lib.optionalString stdenv.isDarwin ''
|
||||
cp include/pa_mac_core.h $out/include/pa_mac_core.h
|
||||
'';
|
||||
|
||||
meta = with lib; {
|
||||
description = "Portable cross-platform Audio API";
|
||||
homepage = "http://www.portaudio.com/";
|
||||
# Not exactly a bsd license, but alike
|
||||
license = licenses.mit;
|
||||
maintainers = with maintainers; [ lovek323 ];
|
||||
platforms = platforms.unix;
|
||||
};
|
||||
|
||||
passthru = {
|
||||
api_version = 19;
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue