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
34 lines
864 B
Nix
34 lines
864 B
Nix
{ lib, stdenv, fetchFromGitHub, faust2jaqt, faust2lv2 }:
|
|
stdenv.mkDerivation rec {
|
|
pname = "LazyLimiter";
|
|
version = "0.3.2";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "magnetophon";
|
|
repo = "LazyLimiter";
|
|
rev = "V${version}";
|
|
sha256 = "10xdydwmsnkx8hzsm74pa546yahp29wifydbc48yywv3sfj5anm7";
|
|
};
|
|
|
|
buildInputs = [ faust2jaqt faust2lv2 ];
|
|
|
|
buildPhase = ''
|
|
faust2jaqt -vec -time -t 99999 LazyLimiter.dsp
|
|
faust2lv2 -vec -time -t 99999 -gui LazyLimiter.dsp
|
|
'';
|
|
|
|
installPhase = ''
|
|
mkdir -p $out/bin
|
|
cp LazyLimiter $out/bin/
|
|
mkdir -p $out/lib/lv2
|
|
cp -r LazyLimiter.lv2/ $out/lib/lv2
|
|
'';
|
|
|
|
meta = {
|
|
description = "A fast yet clean lookahead limiter for jack and lv2";
|
|
homepage = "https://magnetophon.github.io/LazyLimiter/";
|
|
license = lib.licenses.gpl2;
|
|
maintainers = [ lib.maintainers.magnetophon ];
|
|
};
|
|
}
|