about summary refs log tree commit diff
path: root/pkgs/applications/audio/xsynth-dssi
diff options
context:
space:
mode:
authorCillian de Roiste <cillian.deroiste@gmail.com>2011-04-20 16:31:41 +0000
committerCillian de Roiste <cillian.deroiste@gmail.com>2011-04-20 16:31:41 +0000
commit53a135625aefb92de6aa53c4886f45bd599e3b7f (patch)
treecfae4197bf8b43dfcde5901f84cc91a573a53c20 /pkgs/applications/audio/xsynth-dssi
parentb8f6681dbd06995bf9bcf5078adf0e648b6ebf56 (diff)
downloadnixlib-53a135625aefb92de6aa53c4886f45bd599e3b7f.tar
nixlib-53a135625aefb92de6aa53c4886f45bd599e3b7f.tar.gz
nixlib-53a135625aefb92de6aa53c4886f45bd599e3b7f.tar.bz2
nixlib-53a135625aefb92de6aa53c4886f45bd599e3b7f.tar.lz
nixlib-53a135625aefb92de6aa53c4886f45bd599e3b7f.tar.xz
nixlib-53a135625aefb92de6aa53c4886f45bd599e3b7f.tar.zst
nixlib-53a135625aefb92de6aa53c4886f45bd599e3b7f.zip
Adding XSynth-DSSI, a classic analog style software synthesizer
svn path=/nixpkgs/trunk/; revision=26909
Diffstat (limited to 'pkgs/applications/audio/xsynth-dssi')
-rw-r--r--pkgs/applications/audio/xsynth-dssi/default.nix35
1 files changed, 35 insertions, 0 deletions
diff --git a/pkgs/applications/audio/xsynth-dssi/default.nix b/pkgs/applications/audio/xsynth-dssi/default.nix
new file mode 100644
index 000000000000..78303deb2af5
--- /dev/null
+++ b/pkgs/applications/audio/xsynth-dssi/default.nix
@@ -0,0 +1,35 @@
+{ stdenv, fetchurl, alsaLib, autoconf, automake, dssi, gtk, ladspaH,
+ladspaPlugins, liblo, pkgconfig }:
+
+stdenv.mkDerivation  rec {
+  name = "xsynth-dssi-${version}";
+  version = "0.9.4";
+
+  src = fetchurl {
+    url = "mirror://sourceforge/xsynth-dssi/${name}.tar.gz";
+    sha256 = "00nwv2pqjbmxqdc6xdm0cljq6z05lv4y6bibmhz1kih9lm0lklnk";
+  };
+
+  buildInputs = [ alsaLib autoconf automake dssi gtk ladspaH
+    ladspaPlugins liblo pkgconfig ];
+
+  installPhase = ''
+    ensureDir $out/bin
+    cp src/Xsynth_gtk $out/bin
+  '';
+
+  meta = with stdenv.lib; {
+    description = "classic-analog (VCOs-VCF-VCA) style software synthesizer";
+    longDescription = ''
+      Xsynth-DSSI is a classic-analog (VCOs-VCF-VCA) style software
+      synthesizer which operates as a plugin for the DSSI Soft Synth
+      Interface.  DSSI is a plugin API for software instruments (soft
+      synths) with user interfaces, permitting them to be hosted
+      in-process by audio applications.
+    '';
+    homepage = http://dssi.sourceforge.net/download.html#Xsynth-DSSI;
+    license = licenses.gpl2+;
+    platforms = platforms.linux;
+    maintainers = [ maintainers.goibhniu ];
+  };
+}