mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-11 04:02:55 +03:00
faustPhysicalModeling: init at 2.20.2
This commit is contained in:
parent
754ec218c3
commit
d311575619
39
pkgs/applications/audio/faustPhysicalModeling/default.nix
Normal file
39
pkgs/applications/audio/faustPhysicalModeling/default.nix
Normal file
@ -0,0 +1,39 @@
|
|||||||
|
{ stdenv, lib, fetchFromGitHub, faust2jaqt, faust2lv2 }:
|
||||||
|
stdenv.mkDerivation rec {
|
||||||
|
pname = "faustPhysicalModeling";
|
||||||
|
version = "2.20.2";
|
||||||
|
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "grame-cncm";
|
||||||
|
repo = "faust";
|
||||||
|
rev = version;
|
||||||
|
sha256 = "1mm93ba26b7q69hvabzalg30dh8pl858nj4m2bb57pznnp09lq9a";
|
||||||
|
};
|
||||||
|
|
||||||
|
buildInputs = [ faust2jaqt faust2lv2 ];
|
||||||
|
|
||||||
|
buildPhase = ''
|
||||||
|
cd examples/physicalModeling
|
||||||
|
|
||||||
|
for f in *MIDI.dsp; do
|
||||||
|
faust2jaqt -time -vec -double -midi -nvoices 16 -t 99999 $f
|
||||||
|
faust2lv2 -time -vec -double -gui -nvoices 16 -t 99999 $f
|
||||||
|
done
|
||||||
|
'';
|
||||||
|
|
||||||
|
installPhase = ''
|
||||||
|
mkdir -p $out/lib/lv2 $out/bin
|
||||||
|
mv *.lv2/ $out/lib/lv2
|
||||||
|
for f in $(find . -executable -type f); do
|
||||||
|
cp $f $out/bin/
|
||||||
|
done
|
||||||
|
'';
|
||||||
|
|
||||||
|
meta = with lib; {
|
||||||
|
description = "The physical models included with faust compiled as jack standalone and lv2 instruments";
|
||||||
|
homepage = "https://github.com/grame-cncm/faust/tree/master-dev/examples/physicalModeling";
|
||||||
|
license = licenses.mit;
|
||||||
|
platforms = platforms.linux;
|
||||||
|
maintainers = with maintainers; [ magnetophon ];
|
||||||
|
};
|
||||||
|
}
|
@ -27449,6 +27449,8 @@ in
|
|||||||
|
|
||||||
faustlive = callPackage ../applications/audio/faust/faustlive.nix { };
|
faustlive = callPackage ../applications/audio/faust/faustlive.nix { };
|
||||||
|
|
||||||
|
faustPhysicalModeling = callPackage ../applications/audio/faustPhysicalModeling { };
|
||||||
|
|
||||||
faustStk = callPackage ../applications/audio/faustStk { };
|
faustStk = callPackage ../applications/audio/faustStk { };
|
||||||
|
|
||||||
fceux = callPackage ../misc/emulators/fceux { };
|
fceux = callPackage ../misc/emulators/fceux { };
|
||||||
|
Loading…
Reference in New Issue
Block a user