9bb3fccb5b
continuation of #109595 pkgconfig was aliased in 2018, however, it remained in all-packages.nix due to its wide usage. This cleans up the remaining references to pkgs.pkgsconfig and moves the entry to aliases.nix. python3Packages.pkgconfig remained unchanged because it's the canonical name of the upstream package on pypi.
41 lines
1.3 KiB
Nix
41 lines
1.3 KiB
Nix
{ lib, stdenv, fetchurl, autoconf, automake, bison, libtool, pkg-config, which
|
|
, alsaLib, asio, libjack2, libgig, libsndfile, lv2 }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "linuxsampler";
|
|
version = "2.1.1";
|
|
|
|
src = fetchurl {
|
|
url = "https://download.linuxsampler.org/packages/${pname}-${version}.tar.bz2";
|
|
sha256 = "1gijf50x5xbpya5dj3v2mzj7azx4qk9p012csgddp73f0qi0n190";
|
|
};
|
|
|
|
preConfigure = ''
|
|
make -f Makefile.svn
|
|
'';
|
|
|
|
nativeBuildInputs = [ autoconf automake bison libtool pkg-config which ];
|
|
|
|
buildInputs = [ alsaLib asio libjack2 libgig libsndfile lv2 ];
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
meta = with lib; {
|
|
homepage = "http://www.linuxsampler.org";
|
|
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.
|
|
'';
|
|
license = licenses.unfree;
|
|
maintainers = [ maintainers.goibhniu ];
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|