about summary refs log tree commit diff
path: root/pkgs/applications/audio/tambura
diff options
context:
space:
mode:
authorBart Brouns <bart@magnetophon.nl>2018-10-04 04:35:27 +0200
committerBart Brouns <bart@magnetophon.nl>2018-10-04 05:07:54 +0200
commit7b7186d07b1ceeee0763411ca855e7f2a374b19c (patch)
tree3819ed7b466835ed5a8c70d046bffaba59587bec /pkgs/applications/audio/tambura
parent6a995e986ac565bfd039051b6ef64adbf2858a46 (diff)
tambura: init at 1.0
Diffstat (limited to 'pkgs/applications/audio/tambura')
-rw-r--r--pkgs/applications/audio/tambura/default.nix34
1 files changed, 34 insertions, 0 deletions
diff --git a/pkgs/applications/audio/tambura/default.nix b/pkgs/applications/audio/tambura/default.nix
new file mode 100644
index 0000000000000..a739d72898e2d
--- /dev/null
+++ b/pkgs/applications/audio/tambura/default.nix
@@ -0,0 +1,34 @@
+{ stdenv, fetchFromGitHub, faust2jaqt, faust2lv2 }:
+stdenv.mkDerivation rec {
+  pname = "Tambura";
+  name = "${pname}-${version}";
+  version = "1.0";
+
+  src = fetchFromGitHub {
+    owner = "olilarkin";
+    repo = "${pname}";
+    rev = "v${version}";
+    sha256 = "1w80cmiyzca1wirf5gypg3hcix1ky777id8wnd3k92mn1jf4a24y";
+  };
+
+  buildInputs = [ faust2jaqt faust2lv2 ];
+
+  buildPhase = ''
+    faust2jaqt -vec -time -t 99999 ${pname}.dsp
+    faust2lv2 -vec -time -gui -t 99999 ${pname}.dsp
+  '';
+
+  installPhase = ''
+    mkdir -p $out/bin
+    cp ${pname} $out/bin/
+    mkdir -p $out/lib/lv2
+    cp -r ${pname}.lv2/ $out/lib/lv2
+  '';
+
+  meta = with stdenv.lib; {
+    description = "A FAUST patch inspired by the Indian Tambura/Tanpura - a four string drone instrument, known for its unique rich harmonic timbre";
+    homepage = https://github.com/olilarkin/Tambura;
+    license = licenses.gpl2;
+    maintainers = [ maintainers.magnetophon ];
+  };
+}