mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 10:16:44 +01:00
a1363ef02d
Build inputs were not being passed in properly.
35 lines
1.2 KiB
Nix
35 lines
1.2 KiB
Nix
{ stdenv, fetchurl, alsaLib, glib, libjack2, libsndfile, pkgconfig
|
|
, libpulseaudio, CoreServices, CoreAudio, AudioUnit }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "fluidsynth-${version}";
|
|
version = "1.1.6";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://sourceforge/fluidsynth/${name}.tar.bz2";
|
|
sha256 = "00gn93bx4cz9bfwf3a8xyj2by7w23nca4zxf09ll53kzpzglg2yj";
|
|
};
|
|
|
|
preBuild = stdenv.lib.optionalString stdenv.isDarwin ''
|
|
sed -i '40 i\
|
|
#include <CoreAudio/AudioHardware.h>\
|
|
#include <CoreAudio/AudioHardwareDeprecated.h>' \
|
|
src/drivers/fluid_coreaudio.c
|
|
'';
|
|
|
|
NIX_LDFLAGS = stdenv.lib.optionalString stdenv.isDarwin
|
|
"-framework CoreAudio -framework CoreServices";
|
|
|
|
buildInputs = [ glib libsndfile pkgconfig ]
|
|
++ stdenv.lib.optionals (!stdenv.isDarwin) [ alsaLib libpulseaudio libjack2 ]
|
|
++ stdenv.lib.optionals stdenv.isDarwin [ CoreServices CoreAudio AudioUnit ];
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "Real-time software synthesizer based on the SoundFont 2 specifications";
|
|
homepage = http://www.fluidsynth.org;
|
|
license = licenses.lgpl2;
|
|
maintainers = with maintainers; [ goibhniu lovek323 ];
|
|
platforms = platforms.unix;
|
|
};
|
|
}
|