summary refs log tree commit diff
path: root/pkgs/applications/audio/artyFX
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/applications/audio/artyFX')
-rw-r--r--pkgs/applications/audio/artyFX/default.nix22
1 files changed, 22 insertions, 0 deletions
diff --git a/pkgs/applications/audio/artyFX/default.nix b/pkgs/applications/audio/artyFX/default.nix
new file mode 100644
index 00000000000..e60381710c3
--- /dev/null
+++ b/pkgs/applications/audio/artyFX/default.nix
@@ -0,0 +1,22 @@
+{ stdenv, fetchgit, cairomm, cmake, jack2, libpthreadstubs, libXdmcp, libxshmfence, libsndfile, lv2, ntk, pkgconfig }:
+
+stdenv.mkDerivation rec {
+  name = "artyFX-git-${version}";
+  version = "2015-05-07";
+
+  src = fetchgit {
+    url = "https://github.com/harryhaaren/openAV-ArtyFX.git";
+    rev = "3a8cb9a5e4ffaf27a497a31cc9cd6f2e79622d5b";
+    sha256 = "2e3f6ab6f829c0ec177e85f4e419286616cf35fb7303445caa09d3438cac27d5";
+  };
+
+  buildInputs = [ cairomm cmake jack2 libpthreadstubs libXdmcp libxshmfence libsndfile lv2 ntk pkgconfig   ];
+
+  meta = with stdenv.lib; {
+    homepage = http://openavproductions.com/artyfx/;
+    description = "A LV2 plugin bundle of artistic realtime effects";
+    license = licenses.gpl2;
+    maintainers = [ maintainers.magnetophon ];
+    platforms = platforms.linux;
+  };
+}