45 lines
1.3 KiB
Nix
45 lines
1.3 KiB
Nix
{ stdenv, fetchurl, alsaLib, boost, cairo, cmake, fftwSinglePrec, fltk, pcre
|
|
, libjack2, libsndfile, libXdmcp, readline, lv2, libGLU_combined, minixml, pkgconfig, zlib, xorg
|
|
}:
|
|
|
|
assert stdenv ? glibc;
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "yoshimi-${version}";
|
|
version = "1.5.7";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://sourceforge/yoshimi/${name}.tar.bz2";
|
|
sha256 = "1w916mmi6hh547a7icrgx6qr2kwxlxwlm6ampql427rshcz9r61k";
|
|
};
|
|
|
|
buildInputs = [
|
|
alsaLib boost cairo fftwSinglePrec fltk libjack2 libsndfile libXdmcp readline lv2 libGLU_combined
|
|
minixml zlib xorg.libpthreadstubs pcre
|
|
];
|
|
|
|
nativeBuildInputs = [ cmake pkgconfig ];
|
|
|
|
patchPhase = ''
|
|
substituteInPlace src/Misc/Config.cpp --replace /usr $out
|
|
substituteInPlace src/Misc/Bank.cpp --replace /usr $out
|
|
'';
|
|
|
|
preConfigure = "cd src";
|
|
|
|
cmakeFlags = [ "-DFLTK_MATH_LIBRARY=${stdenv.glibc.out}/lib/libm.so" ];
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "High quality software synthesizer based on ZynAddSubFX";
|
|
longDescription = ''
|
|
Yoshimi delivers the same synthesizer capabilities as
|
|
ZynAddSubFX along with very good Jack and Alsa midi/audio
|
|
functionality on Linux
|
|
'';
|
|
homepage = http://yoshimi.sourceforge.net;
|
|
license = licenses.gpl2;
|
|
platforms = platforms.linux;
|
|
maintainers = [ maintainers.goibhniu ];
|
|
};
|
|
}
|