nixpkgs/pkgs/applications/audio/sooperlooper/default.nix

71 lines
1.7 KiB
Nix
Raw Normal View History

{ stdenv
, fetchFromGitHub
2016-08-09 22:19:34 +01:00
, autoreconfHook
, pkgconfig
, which
, libtool
, liblo
, libxml2
, libjack2
, libsndfile
, wxGTK30
, libsigcxx
, libsamplerate
, rubberband
, gettext
, ncurses
, alsaLib
, fftw
2015-01-24 01:41:10 +00:00
}:
stdenv.mkDerivation rec {
pname = "sooperlooper";
2020-07-28 02:33:22 +01:00
version = "1.7.4";
src = fetchFromGitHub {
owner = "essej";
repo = "sooperlooper";
2020-07-28 02:33:22 +01:00
rev = "v${builtins.replaceStrings [ "." ] [ "_" ] version}";
sha256 = "1jng9bkb7iikad0dy1fkiq9wjjdhh1xi1p0cp2lvnz1dsc4yk6iw";
2015-01-24 01:41:10 +00:00
};
2016-08-09 22:19:34 +01:00
autoreconfPhase = ''
patchShebangs ./autogen.sh
./autogen.sh
'';
nativeBuildInputs = [ autoreconfHook pkgconfig which libtool ];
2015-01-24 01:41:10 +00:00
buildInputs = [
liblo
libxml2
libjack2
libsndfile
wxGTK30
libsigcxx
libsamplerate
rubberband
gettext
ncurses
alsaLib
fftw
2015-01-24 01:41:10 +00:00
];
2020-07-28 02:33:22 +01:00
enableParallelBuilding = true;
meta = with stdenv.lib; {
2015-01-24 01:41:10 +00:00
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.
'';
homepage = "http://essej.net/sooperlooper/"; # https is broken
license = licenses.gpl2;
maintainers = with maintainers; [ magnetophon ];
platforms = platforms.linux;
2015-01-24 01:41:10 +00:00
};
}