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

40 lines
1.1 KiB
Nix
Raw Normal View History

2014-01-19 11:33:10 +00:00
{ stdenv, fetchurl, alsaLib, boost, cairo, cmake, fftwSinglePrec, fltk
2014-09-19 17:56:08 +00:00
, jack2, libsndfile, mesa, minixml, pkgconfig, zlib, xorg
2014-01-19 11:31:16 +00:00
}:
assert stdenv ? glibc;
stdenv.mkDerivation rec {
name = "yoshimi-${version}";
2014-11-12 19:56:49 +00:00
version = "1.2.5";
src = fetchurl {
url = "mirror://sourceforge/yoshimi/${name}.tar.bz2";
2014-11-12 19:56:49 +00:00
sha256 = "0lixrxv0wds3p50kmy9k166qhavdjkhlxs432s248hk43k7n6c1h";
};
2014-01-19 11:31:16 +00:00
buildInputs = [
2014-10-01 19:55:40 +00:00
alsaLib boost cairo fftwSinglePrec fltk jack2 libsndfile mesa
2014-09-19 17:56:08 +00:00
minixml zlib xorg.libpthreadstubs
2014-01-19 11:31:16 +00:00
];
nativeBuildInputs = [ cmake pkgconfig ];
preConfigure = "cd src";
cmakeFlags = [ "-DFLTK_MATH_LIBRARY=${stdenv.glibc}/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 ];
};
}