summary refs log tree commit diff
path: root/pkgs/applications
diff options
context:
space:
mode:
authorBart Brouns <bart@magnetophon.nl>2015-01-24 02:41:10 +0100
committerBart Brouns <bart@magnetophon.nl>2015-01-24 02:41:10 +0100
commit37d11df88132e6778f3b123e97b1ec0a9c4ca5b9 (patch)
tree7c20fe2a965fe56fd4479873c273e6d9369ec42a /pkgs/applications
parentf315b7d74afff801766f42cdf7f18f017ec730a9 (diff)
downloadnixpkgs-37d11df88132e6778f3b123e97b1ec0a9c4ca5b9.tar
nixpkgs-37d11df88132e6778f3b123e97b1ec0a9c4ca5b9.tar.gz
nixpkgs-37d11df88132e6778f3b123e97b1ec0a9c4ca5b9.tar.bz2
nixpkgs-37d11df88132e6778f3b123e97b1ec0a9c4ca5b9.tar.lz
nixpkgs-37d11df88132e6778f3b123e97b1ec0a9c4ca5b9.tar.xz
nixpkgs-37d11df88132e6778f3b123e97b1ec0a9c4ca5b9.tar.zst
nixpkgs-37d11df88132e6778f3b123e97b1ec0a9c4ca5b9.zip
add sooperlooper
Diffstat (limited to 'pkgs/applications')
-rw-r--r--pkgs/applications/audio/sooperlooper/default.nix35
1 files changed, 35 insertions, 0 deletions
diff --git a/pkgs/applications/audio/sooperlooper/default.nix b/pkgs/applications/audio/sooperlooper/default.nix
new file mode 100644
index 00000000000..9864d5f16d2
--- /dev/null
+++ b/pkgs/applications/audio/sooperlooper/default.nix
@@ -0,0 +1,35 @@
+{ stdenv, fetchurl, liblo, libxml2, jack2, libsndfile, wxGTK, libsigcxx,
+libsamplerate, rubberband, pkgconfig, ncurses
+}:
+
+stdenv.mkDerivation rec {
+  name = "sooperlooper-${version}";
+  version = "1.7.3";
+
+  src = fetchurl {
+    url = "http://essej.net/sooperlooper/${name}.tar.gz";
+    sha256 = "0n2gdxw1fx8nxxnpzf4sj0kp6k6zi1yq59cbz6qqzcnsnpnvszbs";
+  };
+
+  buildInputs = [
+   liblo libxml2 jack2 libsndfile wxGTK libsigcxx
+   libsamplerate rubberband pkgconfig ncurses
+
+  ];
+
+  meta = {
+    description = "A live looping sampler capable of immediate loop recording, overdubbing, multiplying, reversing and more";
+    longDescription = ''
+      It allows for multiple simultaneous multi-channel loops limited only by your computer's available memory.
+      The application is a standalone JACK client with an engine controllable via OSC and MIDI.
+      It also includes a GUI which communicates with the engine via OSC (even over a network) for user-friendly control on a desktop.
+      However, this kind of live performance looping tool is most effectively used via hardware (midi footpedals, etc) 
+      and the engine can be run standalone on a computer without a monitor.'' ;
+
+    version = "${version}";
+    homepage = "http://essej.net/sooperlooper/index.html";
+    license = stdenv.lib.licenses.gpl;
+    maintainers = [ stdenv.lib.maintainers.magnetophon ];
+    platforms = stdenv.lib.platforms.linux;
+  };
+}