9bb3fccb5b
continuation of #109595 pkgconfig was aliased in 2018, however, it remained in all-packages.nix due to its wide usage. This cleans up the remaining references to pkgs.pkgsconfig and moves the entry to aliases.nix. python3Packages.pkgconfig remained unchanged because it's the canonical name of the upstream package on pypi.
49 lines
1.3 KiB
Nix
49 lines
1.3 KiB
Nix
{ stdenv, lib, fetchFromGitHub, pkg-config, cmake
|
|
, alsaLib, glib, libjack2, libsndfile, libpulseaudio
|
|
, AudioUnit, CoreAudio, CoreMIDI, CoreServices
|
|
, version ? "2"
|
|
}:
|
|
|
|
let
|
|
versionMap = {
|
|
"1" = {
|
|
fluidsynthVersion = "1.1.11";
|
|
sha256 = "0n75jq3xgq46hfmjkaaxz3gic77shs4fzajq40c8gk043i84xbdh";
|
|
};
|
|
"2" = {
|
|
fluidsynthVersion = "2.0.6";
|
|
sha256 = "0nas9pp9r8rnziznxm65x2yzf1ryg98zr3946g0br3s38sjf8l3a";
|
|
};
|
|
};
|
|
in
|
|
|
|
with versionMap.${version};
|
|
|
|
stdenv.mkDerivation {
|
|
name = "fluidsynth-${fluidsynthVersion}";
|
|
version = fluidsynthVersion;
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "FluidSynth";
|
|
repo = "fluidsynth";
|
|
rev = "v${fluidsynthVersion}";
|
|
inherit sha256;
|
|
};
|
|
|
|
nativeBuildInputs = [ pkg-config cmake ];
|
|
|
|
buildInputs = [ glib libsndfile libpulseaudio libjack2 ]
|
|
++ lib.optionals stdenv.isLinux [ alsaLib ]
|
|
++ lib.optionals stdenv.isDarwin [ AudioUnit CoreAudio CoreMIDI CoreServices ];
|
|
|
|
cmakeFlags = [ "-Denable-framework=off" ];
|
|
|
|
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;
|
|
};
|
|
}
|