summary refs log tree commit diff
path: root/pkgs/applications/audio/synthv1/default.nix
diff options
context:
space:
mode:
authorCillian de Róiste <goibhniu@fsfe.org>2013-03-06 01:06:16 +0100
committerCillian de Róiste <goibhniu@fsfe.org>2013-03-06 01:06:16 +0100
commit6254091950bba4fbc30441171bc697d22f83ccfc (patch)
tree22d171d451a5d4a52fb3a0e3a9d88c4c0f9d2f63 /pkgs/applications/audio/synthv1/default.nix
parentc00225bcaef73c68a2d7908d6d89ec013bfb698a (diff)
downloadnixpkgs-6254091950bba4fbc30441171bc697d22f83ccfc.tar
nixpkgs-6254091950bba4fbc30441171bc697d22f83ccfc.tar.gz
nixpkgs-6254091950bba4fbc30441171bc697d22f83ccfc.tar.bz2
nixpkgs-6254091950bba4fbc30441171bc697d22f83ccfc.tar.lz
nixpkgs-6254091950bba4fbc30441171bc697d22f83ccfc.tar.xz
nixpkgs-6254091950bba4fbc30441171bc697d22f83ccfc.tar.zst
nixpkgs-6254091950bba4fbc30441171bc697d22f83ccfc.zip
Add rncbc's Vee One suite: sampler, synth and drum kit
Diffstat (limited to 'pkgs/applications/audio/synthv1/default.nix')
-rw-r--r--pkgs/applications/audio/synthv1/default.nix21
1 files changed, 21 insertions, 0 deletions
diff --git a/pkgs/applications/audio/synthv1/default.nix b/pkgs/applications/audio/synthv1/default.nix
new file mode 100644
index 00000000000..aadce32dda4
--- /dev/null
+++ b/pkgs/applications/audio/synthv1/default.nix
@@ -0,0 +1,21 @@
+{ stdenv, fetchurl, qt4, jackaudio, lv2 }:
+
+stdenv.mkDerivation rec {
+  name = "synthv1-${version}";
+  version = "0.3.2";
+
+  src = fetchurl {
+    url = "mirror://sourceforge/synthv1/${name}.tar.gz";
+    sha256 = "1230yf49qfw540yvp5n7sh6mf3k8590pzwc5mragd3nd6k6apgw9";
+  };
+
+  buildInputs = [ qt4 jackaudio lv2 ];
+
+  meta = with stdenv.lib; {
+    description = "An old-school 4-oscillator subtractive polyphonic synthesizer with stereo fx";
+    homepage = http://synthv1.sourceforge.net/;
+    license = licenses.gpl2Plus;
+    platforms = platforms.linux;
+    maintainers = [ maintainers.goibhniu ];
+  };
+}
\ No newline at end of file