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
46 lines
787 B
Nix
46 lines
787 B
Nix
{
|
|
callPackage,
|
|
lilv,
|
|
libjack2,
|
|
alsa-lib,
|
|
zita-alsa-pcmi,
|
|
libxcb,
|
|
xcbutilxrm,
|
|
sratom,
|
|
gtk2,
|
|
qt5,
|
|
libvterm-neovim,
|
|
robodoc,
|
|
cmake,
|
|
...
|
|
}@args:
|
|
|
|
callPackage ./generic.nix (
|
|
args
|
|
// {
|
|
pname = "synthpod";
|
|
version = "unstable-2021-10-22";
|
|
|
|
url = "https://git.open-music-kontrollers.ch/lv2/synthpod/snapshot/synthpod-6f284bdad882037a522c120af92b96d8abf2de60.tar.xz";
|
|
sha256 = "sha256-59WBlOKum5Pcmq2CfFfRHCNEa8uPCoBk0kSjFlIcypw=";
|
|
|
|
additionalBuildInputs = [
|
|
lilv
|
|
libjack2
|
|
alsa-lib
|
|
zita-alsa-pcmi
|
|
libxcb
|
|
xcbutilxrm
|
|
sratom
|
|
gtk2
|
|
qt5.qtbase
|
|
qt5.wrapQtAppsHook
|
|
libvterm-neovim
|
|
robodoc
|
|
cmake
|
|
];
|
|
|
|
description = "Lightweight Nonlinear LV2 Plugin Container";
|
|
}
|
|
)
|