about summary refs log tree commit diff
path: root/pkgs/applications/audio/jalv
diff options
context:
space:
mode:
authorCillian de Róiste <goibhniu@fsfe.org>2013-03-01 01:33:08 +0100
committerCillian de Róiste <goibhniu@fsfe.org>2013-03-01 01:33:08 +0100
commitbb5f60fec1193a527e0f3e32b485c380fd197bff (patch)
tree21bdaf4a50104145ef7efd97789685e155b73047 /pkgs/applications/audio/jalv
parent94fe64b3eb067c0f8533bbb582b98cd4c7e79f0a (diff)
Add Jalv: an LV2 host for Jack
This allows LV2 audio plugins to be connected to Jack applications
Diffstat (limited to 'pkgs/applications/audio/jalv')
-rw-r--r--pkgs/applications/audio/jalv/default.nix29
1 files changed, 29 insertions, 0 deletions
diff --git a/pkgs/applications/audio/jalv/default.nix b/pkgs/applications/audio/jalv/default.nix
new file mode 100644
index 0000000000000..5655c7d832b9e
--- /dev/null
+++ b/pkgs/applications/audio/jalv/default.nix
@@ -0,0 +1,29 @@
+{ stdenv, fetchurl, gtk, jackaudio, lilv, lv2, pkgconfig, python
+, serd, sord , sratom, suil }:
+
+stdenv.mkDerivation  rec {
+  name = "jalv-${version}";
+  version = "1.4.0";
+
+  src = fetchurl {
+    url = "http://download.drobilla.net/${name}.tar.bz2";
+    sha256 = "1hq968fhiz86428krqhjl3vlw71bigc9bsfcv97zgvsjh0fh6qa0";
+  };
+
+  buildInputs = [
+    gtk jackaudio lilv lv2 pkgconfig python serd sord sratom suil
+  ];
+
+  configurePhase = "python waf configure --prefix=$out";
+
+  buildPhase = "python waf";
+
+  installPhase = "python waf install";
+
+  meta = with stdenv.lib; {
+    description = "A simple but fully featured LV2 host for Jack";
+    homepage = http://drobilla.net/software/jalv;
+    license = licenses.isc;
+    maintainers = [ maintainers.goibhniu ];
+  };
+}