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
41 lines
957 B
Nix
41 lines
957 B
Nix
{ lib, stdenv, fetchFromGitHub, faust2jaqt, faust2lv2 }:
|
|
stdenv.mkDerivation rec {
|
|
pname = "pluginUtils";
|
|
version = "1.1";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "magnetophon";
|
|
repo = "pluginUtils";
|
|
rev = "V${version}";
|
|
sha256 = "1hnr5sp7k6ypf4ks61lnyqx44dkv35yllf3a3xcbrw7yqzagwr1c";
|
|
};
|
|
|
|
buildInputs = [ faust2jaqt faust2lv2 ];
|
|
|
|
buildPhase = ''
|
|
for f in *.dsp
|
|
do
|
|
echo "Building jack standalone for $f"
|
|
faust2jaqt -vec -time -t 99999 "$f"
|
|
echo "Building lv2 for $f"
|
|
faust2lv2 -vec -time -gui -t 99999 "$f"
|
|
done
|
|
'';
|
|
|
|
installPhase = ''
|
|
rm -f *.dsp
|
|
rm -f *.lib
|
|
mkdir -p $out/lib/lv2
|
|
mv *.lv2/ $out/lib/lv2
|
|
mkdir -p $out/bin
|
|
cp * $out/bin/
|
|
'';
|
|
|
|
meta = {
|
|
description = "Some simple utility lv2 plugins";
|
|
homepage = "https://github.com/magnetophon/pluginUtils";
|
|
license = lib.licenses.gpl3;
|
|
maintainers = [ lib.maintainers.magnetophon ];
|
|
};
|
|
}
|