forked from mirrors/nixpkgs
6f2fbf5f0b
This fixes hopefully all remaining missing lib inputs, likely introduced as a regression by our recent treewide switch from stdenv.lib to lib. These instances are all I could find using nix-instantiate --parse using the following command: find "$NIXPKGS" -name '*.nix' \ -and ! -path "$NIXPKGS/pkgs/development/interpreters/python/cpython/docs/template.nix" \ -and ! -path '$NIXPKGS/.git/**' \ -print0 | xargs -0 nix-instantiate --parse >/dev/null
38 lines
1.1 KiB
Nix
38 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 ];
|
|
|
|
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
|
|
cp shelfMultiBand $out/bin/
|
|
cp shelfMultiBandMono $out/bin/
|
|
mkdir -p $out/lib/lv2
|
|
cp -r shelfMultiBand.lv2/ $out/lib/lv2
|
|
cp -r shelfMultiBandMono.lv2/ $out/lib/lv2
|
|
'';
|
|
|
|
meta = {
|
|
description = "A multiband compressor made from shelving filters.";
|
|
homepage = "https://github.com/magnetophon/shelfMultiBand";
|
|
license = lib.licenses.gpl3;
|
|
maintainers = [ lib.maintainers.magnetophon ];
|
|
};
|
|
}
|