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
49 lines
1.1 KiB
Nix
49 lines
1.1 KiB
Nix
{
|
|
lib,
|
|
stdenv,
|
|
fetchFromGitHub,
|
|
faust2jaqt,
|
|
faust2lv2,
|
|
}:
|
|
stdenv.mkDerivation rec {
|
|
pname = "constant-detune-chorus";
|
|
version = "0.1.3";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "magnetophon";
|
|
repo = "constant-detune-chorus";
|
|
rev = "V${version}";
|
|
sha256 = "1sipmc25fr7w7xqx1r0y6i2zwfkgszzwvhk1v15mnsb3cqvk8ybn";
|
|
};
|
|
|
|
buildInputs = [
|
|
faust2jaqt
|
|
faust2lv2
|
|
];
|
|
|
|
dontWrapQtApps = true;
|
|
|
|
buildPhase = ''
|
|
faust2jaqt -time -vec -t 99999 ConstantDetuneChorus.dsp
|
|
faust2lv2 -time -vec -t 99999 -gui ConstantDetuneChorus.dsp
|
|
'';
|
|
|
|
installPhase = ''
|
|
mkdir -p $out/bin
|
|
for f in $(find . -executable -type f); do
|
|
cp $f $out/bin/
|
|
done
|
|
mkdir -p $out/lib/lv2
|
|
cp -r ConstantDetuneChorus.lv2/ $out/lib/lv2
|
|
'';
|
|
|
|
meta = {
|
|
description = "Chorus algorithm that maintains constant and symmetric detuning depth (in cents), regardless of modulation rate. For jack and lv2";
|
|
homepage = "https://github.com/magnetophon/constant-detune-chorus";
|
|
license = lib.licenses.gpl3;
|
|
maintainers = [ lib.maintainers.magnetophon ];
|
|
# ERROR3 : n is NaN in an Interval
|
|
broken = true;
|
|
};
|
|
}
|