2017-12-07 12:36:32 +00:00
|
|
|
{ stdenv, lib, fetchFromGitHub, pkgconfig, cmake
|
|
|
|
, alsaLib, glib, libjack2, libsndfile, libpulseaudio
|
|
|
|
, AudioUnit, CoreAudio, CoreMIDI, CoreServices
|
2018-12-16 11:30:10 +00:00
|
|
|
, version ? "2"
|
2017-12-07 12:36:32 +00:00
|
|
|
}:
|
2012-03-31 20:22:19 +00:00
|
|
|
|
2018-12-16 11:30:10 +00:00
|
|
|
let
|
|
|
|
versionMap = {
|
|
|
|
"1" = {
|
|
|
|
fluidsynthVersion = "1.1.11";
|
|
|
|
sha256 = "0n75jq3xgq46hfmjkaaxz3gic77shs4fzajq40c8gk043i84xbdh";
|
|
|
|
};
|
|
|
|
"2" = {
|
2019-09-26 17:13:51 +00:00
|
|
|
fluidsynthVersion = "2.0.6";
|
|
|
|
sha256 = "0nas9pp9r8rnziznxm65x2yzf1ryg98zr3946g0br3s38sjf8l3a";
|
2018-12-16 11:30:10 +00:00
|
|
|
};
|
|
|
|
};
|
|
|
|
in
|
|
|
|
|
|
|
|
with versionMap.${version};
|
|
|
|
|
2019-08-13 21:52:01 +00:00
|
|
|
stdenv.mkDerivation {
|
2018-12-16 11:30:10 +00:00
|
|
|
name = "fluidsynth-${fluidsynthVersion}";
|
2018-12-18 08:30:32 +00:00
|
|
|
version = fluidsynthVersion;
|
2012-03-31 20:22:19 +00:00
|
|
|
|
2017-12-07 12:36:32 +00:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "FluidSynth";
|
|
|
|
repo = "fluidsynth";
|
2018-12-16 11:30:10 +00:00
|
|
|
rev = "v${fluidsynthVersion}";
|
|
|
|
inherit sha256;
|
2012-03-31 20:22:19 +00:00
|
|
|
};
|
|
|
|
|
2017-12-07 12:36:32 +00:00
|
|
|
nativeBuildInputs = [ pkgconfig cmake ];
|
2013-07-04 04:51:32 +00:00
|
|
|
|
2019-04-30 01:33:18 +00:00
|
|
|
buildInputs = [ glib libsndfile libpulseaudio libjack2 ]
|
|
|
|
++ lib.optionals stdenv.isLinux [ alsaLib ]
|
2017-12-07 12:36:32 +00:00
|
|
|
++ lib.optionals stdenv.isDarwin [ AudioUnit CoreAudio CoreMIDI CoreServices ];
|
|
|
|
|
2019-04-30 01:33:18 +00:00
|
|
|
cmakeFlags = [ "-Denable-framework=off" ];
|
2012-03-31 20:22:19 +00:00
|
|
|
|
2017-12-07 12:36:32 +00:00
|
|
|
meta = with lib; {
|
2013-07-04 04:51:32 +00:00
|
|
|
description = "Real-time software synthesizer based on the SoundFont 2 specifications";
|
|
|
|
homepage = http://www.fluidsynth.org;
|
2017-12-07 12:36:32 +00:00
|
|
|
license = licenses.lgpl21Plus;
|
2013-07-04 04:51:32 +00:00
|
|
|
maintainers = with maintainers; [ goibhniu lovek323 ];
|
|
|
|
platforms = platforms.unix;
|
2012-03-31 20:22:19 +00:00
|
|
|
};
|
|
|
|
}
|