058e787bea
Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/fluidsynth/versions
33 lines
1021 B
Nix
33 lines
1021 B
Nix
{ stdenv, lib, fetchFromGitHub, pkgconfig, cmake
|
|
, alsaLib, glib, libjack2, libsndfile, libpulseaudio
|
|
, AudioUnit, CoreAudio, CoreMIDI, CoreServices
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "fluidsynth-${version}";
|
|
version = "2.0.1";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "FluidSynth";
|
|
repo = "fluidsynth";
|
|
rev = "v${version}";
|
|
sha256 = "1mqyym5qkh8xd1rqj3yhfxbw5dxjcrljb6nkfqzvcarlv4h6rjn7";
|
|
};
|
|
|
|
nativeBuildInputs = [ pkgconfig cmake ];
|
|
|
|
buildInputs = [ glib libsndfile ]
|
|
++ lib.optionals (!stdenv.isDarwin) [ alsaLib libpulseaudio libjack2 ]
|
|
++ lib.optionals stdenv.isDarwin [ AudioUnit CoreAudio CoreMIDI CoreServices ];
|
|
|
|
cmakeFlags = lib.optional stdenv.isDarwin "-Denable-framework=off";
|
|
|
|
meta = with lib; {
|
|
description = "Real-time software synthesizer based on the SoundFont 2 specifications";
|
|
homepage = http://www.fluidsynth.org;
|
|
license = licenses.lgpl21Plus;
|
|
maintainers = with maintainers; [ goibhniu lovek323 ];
|
|
platforms = platforms.unix;
|
|
};
|
|
}
|