3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/applications/audio/fluidsynth/default.nix

33 lines
1 KiB
Nix
Raw Normal View History

2021-11-01 09:45:18 +00:00
{ stdenv, lib, fetchFromGitHub, buildPackages, pkg-config, cmake
, alsa-lib, glib, libjack2, libsndfile, libpulseaudio
2017-12-07 12:36:32 +00:00
, AudioUnit, CoreAudio, CoreMIDI, CoreServices
}:
stdenv.mkDerivation rec {
pname = "fluidsynth";
version = "2.2.3";
2017-12-07 12:36:32 +00:00
src = fetchFromGitHub {
owner = "FluidSynth";
repo = "fluidsynth";
rev = "v${version}";
sha256 = "0x5808d03ym23np17nl8gfbkx3c4y3d7jyyr2222wn2prswbb6x3";
};
2021-11-01 09:45:18 +00:00
nativeBuildInputs = [ buildPackages.stdenv.cc pkg-config cmake ];
2019-04-30 02:33:18 +01:00
buildInputs = [ glib libsndfile libpulseaudio libjack2 ]
++ lib.optionals stdenv.isLinux [ alsa-lib ]
2017-12-07 12:36:32 +00:00
++ lib.optionals stdenv.isDarwin [ AudioUnit CoreAudio CoreMIDI CoreServices ];
2019-04-30 02:33:18 +01:00
cmakeFlags = [ "-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 = "https://www.fluidsynth.org";
2017-12-07 12:36:32 +00:00
license = licenses.lgpl21Plus;
maintainers = with maintainers; [ goibhniu lovek323 ];
platforms = platforms.unix;
};
}