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

40 lines
1.1 KiB
Nix
Raw Normal View History

2014-01-19 12:33:10 +01:00
{ stdenv, fetchurl, alsaLib, boost, cairo, cmake, fftwSinglePrec, fltk
2014-09-19 19:56:08 +02:00
, jack2, libsndfile, mesa, minixml, pkgconfig, zlib, xorg
2014-01-19 12:31:16 +01:00
}:
assert stdenv ? glibc;
stdenv.mkDerivation rec {
name = "yoshimi-${version}";
2014-08-26 14:54:11 +02:00
version = "1.2.3";
src = fetchurl {
url = "mirror://sourceforge/yoshimi/${name}.tar.bz2";
2014-08-26 14:54:11 +02:00
sha256 = "00bp699k8gnilin2rvgj35334s9jrizp82qwlmzzvvfliwcgqlqw";
};
2014-01-19 12:31:16 +01:00
buildInputs = [
2014-09-19 19:56:08 +02:00
alsaLib boost boost.lib cairo fftwSinglePrec fltk jack2 libsndfile mesa
minixml zlib xorg.libpthreadstubs
2014-01-19 12:31:16 +01: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 ];
};
}