nixpkgs/pkgs/applications/audio/fluidsynth/default.nix

50 lines
1.3 KiB
Nix
Raw Normal View History

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
}:
2018-12-16 11:30:10 +00:00
let
versionMap = {
"1" = {
fluidsynthVersion = "1.1.11";
sha256 = "0n75jq3xgq46hfmjkaaxz3gic77shs4fzajq40c8gk043i84xbdh";
};
"2" = {
fluidsynthVersion = "2.0.4";
sha256 = "1v2vji02fbrjgypwb4fw2r90hnfwfbfh3d24j8vjwlbqxhxp16s0";
2018-12-16 11:30:10 +00:00
};
};
in
with versionMap.${version};
stdenv.mkDerivation rec {
2018-12-16 11:30:10 +00:00
name = "fluidsynth-${fluidsynthVersion}";
version = fluidsynthVersion;
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;
};
2017-12-07 12:36:32 +00:00
nativeBuildInputs = [ pkgconfig cmake ];
buildInputs = [ glib libsndfile ]
2017-12-07 12:36:32 +00:00
++ lib.optionals (!stdenv.isDarwin) [ alsaLib libpulseaudio libjack2 ]
++ lib.optionals stdenv.isDarwin [ AudioUnit CoreAudio CoreMIDI CoreServices ];
cmakeFlags = lib.optional stdenv.isDarwin "-Denable-framework=off";
2017-12-07 12:36:32 +00:00
meta = with lib; {
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;
maintainers = with maintainers; [ goibhniu lovek323 ];
platforms = platforms.unix;
badPlatforms = [ "x86_64-darwin" ];
};
}