Files
Dark Steveneq 646b892680
Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
push sheeet
2025-10-09 14:15:47 +02:00

60 lines
994 B
Nix

{
lib,
stdenv,
fetchFromGitHub,
faust,
meson,
ninja,
pkg-config,
boost,
cairo,
fftw,
ladspa-sdk,
libxcb,
lv2,
xcbutilwm,
xorg,
zita-convolver,
zita-resampler,
}:
stdenv.mkDerivation rec {
pname = "kapitonov-plugins-pack";
version = "1.2.1";
src = fetchFromGitHub {
owner = "olegkapitonov";
repo = "kapitonov-plugins-pack";
rev = version;
sha256 = "1mxi7b1vrzg25x85lqk8c77iziqrqyz18mqkfjlz09sxp5wfs9w4";
};
nativeBuildInputs = [
faust
meson
ninja
pkg-config
];
buildInputs = [
boost
cairo
fftw
ladspa-sdk
libxcb
lv2
xcbutilwm
xorg.xcbutil
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 ];
};
}