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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

39 lines
1.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
2023-04-21 15:43:40 +00:00
, AppKit, AudioUnit, CoreAudio, CoreMIDI, CoreServices
2017-12-07 12:36:32 +00:00
}:
stdenv.mkDerivation rec {
pname = "fluidsynth";
2023-04-04 05:59:20 +00:00
version = "2.3.2";
2017-12-07 12:36:32 +00:00
src = fetchFromGitHub {
owner = "FluidSynth";
repo = "fluidsynth";
rev = "v${version}";
2023-04-04 05:59:20 +00:00
sha256 = "sha256-BSJu3jB7b5G2ThXBUHUNnBGl55EXe3nIzdBdgfOWDSM=";
};
outputs = [ "out" "dev" "man" ];
2021-11-01 09:45:18 +00:00
nativeBuildInputs = [ buildPackages.stdenv.cc pkg-config cmake ];
buildInputs = [ glib libsndfile libjack2 ]
++ lib.optionals stdenv.isLinux [ alsa-lib libpulseaudio ]
2023-04-21 15:43:40 +00:00
++ lib.optionals stdenv.isDarwin [ AppKit AudioUnit CoreAudio CoreMIDI CoreServices ];
2017-12-07 12:36:32 +00:00
cmakeFlags = [
"-Denable-framework=off"
# set CMAKE_INSTALL_NAME_DIR to correct value on darwin
"-DCMAKE_INSTALL_LIBDIR=lib"
];
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;
};
}