about summary refs log tree commit diff
path: root/pkgs/applications/audio
diff options
context:
space:
mode:
authorCillian de Roiste <cillian.deroiste@gmail.com>2011-04-23 13:54:25 +0000
committerCillian de Roiste <cillian.deroiste@gmail.com>2011-04-23 13:54:25 +0000
commit0d09cc4348b3f145a46c8226d9928df7acdb3b5b (patch)
tree617ca3d8047226af72a0414b55349c1af383b694 /pkgs/applications/audio
parent59f16bc779534661b019f83327bedf6911dca17e (diff)
Adding Yoshimi, a fork of ZynAddSubFX (audio synthesizer) with many enhancements including jack support
svn path=/nixpkgs/trunk/; revision=26935
Diffstat (limited to 'pkgs/applications/audio')
-rw-r--r--pkgs/applications/audio/yoshimi/default.nix34
1 files changed, 34 insertions, 0 deletions
diff --git a/pkgs/applications/audio/yoshimi/default.nix b/pkgs/applications/audio/yoshimi/default.nix
new file mode 100644
index 0000000000000..c9ca27f13f3f2
--- /dev/null
+++ b/pkgs/applications/audio/yoshimi/default.nix
@@ -0,0 +1,34 @@
+{ stdenv, fetchurl, alsaLib, boost, cmakeCurses, fftwSinglePrec, fltk,
+jackaudio, libsndfile, mesa, minixml, pkgconfig, zlib }:
+
+stdenv.mkDerivation  rec {
+  name = "yoshimi-${version}";
+  version = "0.060.10";
+
+  src = fetchurl {
+    url = "mirror://sourceforge/yoshimi/${name}.tar.bz2";
+    sha256 = "0y67w7y515hx2bi5gfjgsw1hdah1bdrrvcfmqyjsvn7jbd0q47v1";
+  };
+
+  buildInputs = [ alsaLib boost cmakeCurses fftwSinglePrec fltk
+    jackaudio libsndfile mesa minixml pkgconfig zlib ];
+
+  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 ];
+  };
+}