bcb2f287e1
GitOrigin-RevId: d603719ec6e294f034936c0d0dc06f689d91b6c3
40 lines
1.1 KiB
Nix
40 lines
1.1 KiB
Nix
{ lib, stdenv, fetchFromGitHub, faust2jaqt, faust2lv2 }:
|
|
stdenv.mkDerivation rec {
|
|
pname = "shelfMultiBand";
|
|
version = "0.6.1";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "magnetophon";
|
|
repo = "shelfMultiBand";
|
|
rev = "V${version}";
|
|
sha256 = "1b1h4z5fs2xm7wvw11p9wnd0bxs3m88124f5phh0gwvpsdrd0im5";
|
|
};
|
|
|
|
buildInputs = [ faust2jaqt faust2lv2 ];
|
|
|
|
dontWrapQtApps = true;
|
|
|
|
buildPhase = ''
|
|
faust2jaqt -vec -double -time -t 99999 shelfMultiBand.dsp
|
|
faust2jaqt -vec -double -time -t 99999 shelfMultiBandMono.dsp
|
|
faust2lv2 -vec -double -time -gui -t 99999 shelfMultiBandMono.dsp
|
|
faust2lv2 -vec -double -time -gui -t 99999 shelfMultiBand.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 shelfMultiBand.lv2/ $out/lib/lv2
|
|
cp -r shelfMultiBandMono.lv2/ $out/lib/lv2
|
|
'';
|
|
|
|
meta = {
|
|
description = "Multiband compressor made from shelving filters";
|
|
homepage = "https://github.com/magnetophon/shelfMultiBand";
|
|
license = lib.licenses.gpl3;
|
|
maintainers = [ lib.maintainers.magnetophon ];
|
|
};
|
|
}
|