03a257e5a3
Co-authored-by: Sandro <sandro.jaeckel@gmail.com>
44 lines
927 B
Nix
44 lines
927 B
Nix
{ lib, stdenv, fetchFromGitHub, faust, meson, ninja, pkg-config
|
|
, boost, cairo, fftw, gnome, ladspa-sdk, libxcb, lv2, xcbutilwm
|
|
, zita-convolver, zita-resampler
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "kapitonov-plugins-pack";
|
|
version = "1.2.1";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "olegkapitonov";
|
|
repo = pname;
|
|
rev = version;
|
|
sha256 = "1mxi7b1vrzg25x85lqk8c77iziqrqyz18mqkfjlz09sxp5wfs9w4";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
faust
|
|
meson
|
|
ninja
|
|
pkg-config
|
|
];
|
|
|
|
buildInputs = [
|
|
boost
|
|
cairo
|
|
fftw
|
|
ladspa-sdk
|
|
libxcb
|
|
lv2
|
|
xcbutilwm
|
|
zita-convolver
|
|
zita-resampler
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "Set of LADSPA and LV2 plugins for guitar sound processing";
|
|
homepage = "https://github.com/olegkapitonov/Kapitonov-Plugins-Pack";
|
|
license = licenses.gpl3;
|
|
platforms = platforms.linux;
|
|
maintainers = with maintainers; [ magnetophon ];
|
|
};
|
|
}
|