2021-01-19 07:50:56 +01:00
|
|
|
{ lib, stdenv, fetchurl, autoconf, automake, bison, libtool, pkg-config, which
|
2017-12-09 02:35:27 +01:00
|
|
|
, alsaLib, asio, libjack2, libgig, libsndfile, lv2 }:
|
2012-04-20 22:39:42 +02:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 14:41:18 +02:00
|
|
|
pname = "linuxsampler";
|
2019-09-27 04:29:22 +02:00
|
|
|
version = "2.1.1";
|
2012-04-20 22:39:42 +02:00
|
|
|
|
2017-12-09 02:35:27 +01:00
|
|
|
src = fetchurl {
|
2019-08-15 14:41:18 +02:00
|
|
|
url = "https://download.linuxsampler.org/packages/${pname}-${version}.tar.bz2";
|
2019-09-27 04:29:22 +02:00
|
|
|
sha256 = "1gijf50x5xbpya5dj3v2mzj7azx4qk9p012csgddp73f0qi0n190";
|
2012-04-20 22:39:42 +02:00
|
|
|
};
|
|
|
|
|
2012-08-27 23:48:44 +02:00
|
|
|
preConfigure = ''
|
2017-12-09 02:35:27 +01:00
|
|
|
make -f Makefile.svn
|
2012-08-27 23:48:44 +02:00
|
|
|
'';
|
2012-04-20 22:39:42 +02:00
|
|
|
|
2021-01-19 07:50:56 +01:00
|
|
|
nativeBuildInputs = [ autoconf automake bison libtool pkg-config which ];
|
2017-12-09 02:35:27 +01:00
|
|
|
|
|
|
|
buildInputs = [ alsaLib asio libjack2 libgig libsndfile lv2 ];
|
|
|
|
|
|
|
|
enableParallelBuilding = true;
|
2012-04-20 22:39:42 +02:00
|
|
|
|
2021-01-11 08:54:33 +01:00
|
|
|
meta = with lib; {
|
2020-04-01 03:11:51 +02:00
|
|
|
homepage = "http://www.linuxsampler.org";
|
2012-04-20 22:39:42 +02:00
|
|
|
description = "Sampler backend";
|
|
|
|
longDescription = ''
|
|
|
|
Includes sampler engine, audio and MIDI drivers, network layer
|
|
|
|
(LSCP) API and native C++ API.
|
|
|
|
|
|
|
|
LinuxSampler is licensed under the GNU GPL with the exception
|
|
|
|
that USAGE of the source code, libraries and applications FOR
|
|
|
|
COMMERCIAL HARDWARE OR SOFTWARE PRODUCTS IS NOT ALLOWED without
|
|
|
|
prior written permission by the LinuxSampler authors. If you
|
|
|
|
have questions on the subject, that are not yet covered by the
|
|
|
|
FAQ, please contact us.
|
2017-12-09 02:35:27 +01:00
|
|
|
'';
|
2013-04-12 14:37:50 +02:00
|
|
|
license = licenses.unfree;
|
2012-04-20 22:39:42 +02:00
|
|
|
maintainers = [ maintainers.goibhniu ];
|
2012-08-27 23:48:44 +02:00
|
|
|
platforms = platforms.linux;
|
2012-04-20 22:39:42 +02:00
|
|
|
};
|
|
|
|
}
|