1 { lib, stdenv, fetchurl, autoconf, automake, bison, libtool, pkg-config, which
2 , alsa-lib, asio, libjack2, libgig, libsndfile, lv2 }:
4 stdenv.mkDerivation rec {
5 pname = "linuxsampler";
9 url = "https://download.linuxsampler.org/packages/${pname}-${version}.tar.bz2";
10 sha256 = "sha256-T7quk5N5JBiPqIziQd0vaCr8tLDbwS6otz6egY01OTE=";
17 nativeBuildInputs = [ autoconf automake bison libtool pkg-config which ];
19 buildInputs = [ alsa-lib asio libjack2 libgig libsndfile lv2 ];
21 enableParallelBuilding = true;
24 homepage = "http://www.linuxsampler.org";
25 description = "Sampler backend";
27 Includes sampler engine, audio and MIDI drivers, network layer
28 (LSCP) API and native C++ API.
30 LinuxSampler is licensed under the GNU GPL with the exception
31 that USAGE of the source code, libraries and applications FOR
32 COMMERCIAL HARDWARE OR SOFTWARE PRODUCTS IS NOT ALLOWED without
33 prior written permission by the LinuxSampler authors. If you
34 have questions on the subject, that are not yet covered by the
35 FAQ, please contact us.
37 license = licenses.unfree;
39 platforms = platforms.linux;