summary refs log tree commit diff
path: root/pkgs/applications/audio/ingen
diff options
context:
space:
mode:
authorCillian de Róiste <goibhniu@fsfe.org>2014-03-09 20:32:06 +0100
committerCillian de Róiste <goibhniu@fsfe.org>2014-03-09 20:32:06 +0100
commitd21323cbf89ef27ee52b85d5eaa3eacaaed2cc98 (patch)
treea672e6c0c2ae7b6e409fe4f2f1cf2a0197238a23 /pkgs/applications/audio/ingen
parent061b489f100b6fd3eb2cd50a11856880835b24a1 (diff)
downloadnixlib-d21323cbf89ef27ee52b85d5eaa3eacaaed2cc98.tar
nixlib-d21323cbf89ef27ee52b85d5eaa3eacaaed2cc98.tar.gz
nixlib-d21323cbf89ef27ee52b85d5eaa3eacaaed2cc98.tar.bz2
nixlib-d21323cbf89ef27ee52b85d5eaa3eacaaed2cc98.tar.lz
nixlib-d21323cbf89ef27ee52b85d5eaa3eacaaed2cc98.tar.xz
nixlib-d21323cbf89ef27ee52b85d5eaa3eacaaed2cc98.tar.zst
nixlib-d21323cbf89ef27ee52b85d5eaa3eacaaed2cc98.zip
add ingen: A modular audio processing system using JACK and LV2 or LADSPA
Diffstat (limited to 'pkgs/applications/audio/ingen')
-rw-r--r--pkgs/applications/audio/ingen/default.nix33
1 files changed, 33 insertions, 0 deletions
diff --git a/pkgs/applications/audio/ingen/default.nix b/pkgs/applications/audio/ingen/default.nix
new file mode 100644
index 000000000000..73138cc269d0
--- /dev/null
+++ b/pkgs/applications/audio/ingen/default.nix
@@ -0,0 +1,33 @@
+{ stdenv, fetchsvn, boost, ganv, glibmm, gtk, gtkmm, jackaudio, lilv
+, lv2, pkgconfig, python, raul, serd, sord, sratom, suil
+}:
+
+stdenv.mkDerivation  rec {
+  name = "ingen-svn-${rev}";
+  rev = "5317";
+
+  src = fetchsvn {
+    url = "http://svn.drobilla.net/lad/trunk/ingen";
+    rev = rev;
+    sha256 = "0zm3wbv9qsingjyr95nwin3khmnf3wq3fz2xa6p420dpcy6qnl4x";
+  };
+
+  buildInputs = [
+    boost ganv glibmm gtk gtkmm jackaudio lilv lv2 pkgconfig python
+    raul serd sord sratom suil
+  ];
+
+  configurePhase = "python waf configure --prefix=$out";
+
+  buildPhase = "python waf";
+
+  installPhase = "python waf install";
+
+  meta = with stdenv.lib; {
+    description = "A modular audio processing system using JACK and LV2 or LADSPA plugins";
+    homepage = http://drobilla.net/software/ingen;
+    license = licenses.gpl3;
+    maintainers = [ maintainers.goibhniu ];
+    platforms = platforms.linux;
+  };
+}