mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-20 04:33:57 +00:00
b394a31dd2
fluidsynth: move headers out to "dev" output, mans to "man"
39 lines
1.1 KiB
Nix
39 lines
1.1 KiB
Nix
{ stdenv, lib, fetchFromGitHub, buildPackages, pkg-config, cmake
|
|
, alsa-lib, glib, libjack2, libsndfile, libpulseaudio
|
|
, AppKit, AudioUnit, CoreAudio, CoreMIDI, CoreServices
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "fluidsynth";
|
|
version = "2.3.2";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "FluidSynth";
|
|
repo = "fluidsynth";
|
|
rev = "v${version}";
|
|
sha256 = "sha256-BSJu3jB7b5G2ThXBUHUNnBGl55EXe3nIzdBdgfOWDSM=";
|
|
};
|
|
|
|
outputs = [ "out" "dev" "man" ];
|
|
|
|
nativeBuildInputs = [ buildPackages.stdenv.cc pkg-config cmake ];
|
|
|
|
buildInputs = [ glib libsndfile libjack2 ]
|
|
++ lib.optionals stdenv.isLinux [ alsa-lib libpulseaudio ]
|
|
++ lib.optionals stdenv.isDarwin [ AppKit AudioUnit CoreAudio CoreMIDI CoreServices ];
|
|
|
|
cmakeFlags = [
|
|
"-Denable-framework=off"
|
|
# set CMAKE_INSTALL_NAME_DIR to correct value on darwin
|
|
"-DCMAKE_INSTALL_LIBDIR=lib"
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "Real-time software synthesizer based on the SoundFont 2 specifications";
|
|
homepage = "https://www.fluidsynth.org";
|
|
license = licenses.lgpl21Plus;
|
|
maintainers = with maintainers; [ goibhniu lovek323 ];
|
|
platforms = platforms.unix;
|
|
};
|
|
}
|