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

49 lines
1.3 KiB
Nix
Raw Normal View History

{ stdenv, lib, fetchFromGitHub, pkg-config, cmake
, alsa-lib, glib, libjack2, libsndfile, libpulseaudio
2017-12-07 13:36:32 +01:00
, AudioUnit, CoreAudio, CoreMIDI, CoreServices
2018-12-16 12:30:10 +01:00
, version ? "2"
2017-12-07 13:36:32 +01:00
}:
2018-12-16 12:30:10 +01:00
let
versionMap = {
"1" = {
fluidsynthVersion = "1.1.11";
sha256 = "0n75jq3xgq46hfmjkaaxz3gic77shs4fzajq40c8gk043i84xbdh";
};
"2" = {
2021-09-14 22:13:46 +02:00
fluidsynthVersion = "2.2.3";
sha256 = "0x5808d03ym23np17nl8gfbkx3c4y3d7jyyr2222wn2prswbb6x3";
2018-12-16 12:30:10 +01:00
};
};
in
with versionMap.${version};
2019-08-13 23:52:01 +02:00
stdenv.mkDerivation {
2018-12-16 12:30:10 +01:00
name = "fluidsynth-${fluidsynthVersion}";
version = fluidsynthVersion;
2017-12-07 13:36:32 +01:00
src = fetchFromGitHub {
owner = "FluidSynth";
repo = "fluidsynth";
2018-12-16 12:30:10 +01:00
rev = "v${fluidsynthVersion}";
inherit sha256;
};
nativeBuildInputs = [ pkg-config cmake ];
2019-04-30 03:33:18 +02:00
buildInputs = [ glib libsndfile libpulseaudio libjack2 ]
++ lib.optionals stdenv.isLinux [ alsa-lib ]
2017-12-07 13:36:32 +01:00
++ lib.optionals stdenv.isDarwin [ AudioUnit CoreAudio CoreMIDI CoreServices ];
2019-04-30 03:33:18 +02:00
cmakeFlags = [ "-Denable-framework=off" ];
2017-12-07 13:36:32 +01:00
meta = with lib; {
description = "Real-time software synthesizer based on the SoundFont 2 specifications";
homepage = "https://www.fluidsynth.org";
2017-12-07 13:36:32 +01:00
license = licenses.lgpl21Plus;
maintainers = with maintainers; [ goibhniu lovek323 ];
platforms = platforms.unix;
};
}