summary refs log tree commit diff
path: root/pkgs/applications/audio/artyFX
diff options
context:
space:
mode:
authorBart Brouns <bart@magnetopon.nl>2015-05-07 17:51:05 +0200
committerBart Brouns <bart@magnetopon.nl>2015-05-07 17:51:05 +0200
commit27d57966f5f1864f022eb4aa33dcf2ac840de8e3 (patch)
tree02205ae483cd26bb597f123398c92de2ec57d53a /pkgs/applications/audio/artyFX
parent0db1bb5bda4ae9c5b900402ca6a47eadb5cc3fb2 (diff)
downloadnixpkgs-27d57966f5f1864f022eb4aa33dcf2ac840de8e3.tar
nixpkgs-27d57966f5f1864f022eb4aa33dcf2ac840de8e3.tar.gz
nixpkgs-27d57966f5f1864f022eb4aa33dcf2ac840de8e3.tar.bz2
nixpkgs-27d57966f5f1864f022eb4aa33dcf2ac840de8e3.tar.lz
nixpkgs-27d57966f5f1864f022eb4aa33dcf2ac840de8e3.tar.xz
nixpkgs-27d57966f5f1864f022eb4aa33dcf2ac840de8e3.tar.zst
nixpkgs-27d57966f5f1864f022eb4aa33dcf2ac840de8e3.zip
add artyFX: A LV2 plugin bundle of effects
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;
+  };
+}