magnetophonDSP.VoiceOfFaust: 1.1.5 -> 1.1.7 (#407081)

This commit is contained in:
Bart Brouns
2025-05-15 18:36:14 +02:00
committed by GitHub
parent e91b7a59e8
commit 0680f195d1
@@ -11,13 +11,13 @@
}:
stdenv.mkDerivation rec {
pname = "VoiceOfFaust";
version = "1.1.5";
version = "1.1.7";
src = fetchFromGitHub {
owner = "magnetophon";
repo = "VoiceOfFaust";
rev = version;
sha256 = "sha256-vB8+ymvNuuovFXwOJ3BTIj5mGzCGa1+yhYs4nWMYIxU=";
tag = "V${version}";
sha256 = "sha256-wsc4yzytK2hPVBQwMhdhjnH1pDtpkNCFJnItyzszEs0=";
};
plugins = [
@@ -45,15 +45,17 @@ stdenv.mkDerivation rec {
];
patchPhase = ''
sed -i "s@pd -nodac@${pitchTracker}/bin/pd -nodac@g" launchers/synthWrapper
sed -i "s@jack_connect@${jack-example-tools}/bin/jack_connect@g" launchers/synthWrapper
sed -i "s@pd -nodac@${pitchTracker}/bin/pd -nodac@g" launchers/pitchTracker
sed -i "s@../PureData/OscSendVoc.pd@$out/bin/PureData/OscSendVoc.pd@g" launchers/pitchTracker
sed -i "s@pd -nodac@${pitchTracker}/bin/pd -nodac@g" launchers/pitchTrackerGUI
sed -i "s@../PureData/OscSendVoc.pd@$out/bin/PureData/OscSendVoc.pd@g" launchers/pitchTrackerGUI
'';
meta = {
description = "Turn your voice into a synthesizer";
homepage = "https://github.com/magnetophon/VoiceOfFaust";
license = lib.licenses.gpl3;
license = lib.licenses.agpl3Only;
maintainers = [ lib.maintainers.magnetophon ];
};
}