nebula-de-esser: 3.2.0 -> 3.3.0 (#532857)

This commit is contained in:
Peder Bergebakken Sundt
2026-06-23 00:43:43 +00:00
committed by GitHub
+4 -8
View File
@@ -19,16 +19,16 @@
rustPlatform.buildRustPackage (finalAttrs: {
pname = "nebula-de-esser";
version = "3.2.0";
version = "3.3.0";
src = fetchFromGitHub {
owner = "subhankardas15071992-cloud";
repo = "Nebula-De-Esser";
tag = "v${finalAttrs.version}";
hash = "sha256-N+tVlhGTBRXZDKGRYo2WUamiekTe1FXvpqm34lwu2Z8=";
hash = "sha256-vV7Qc5WxGvb6h3o1CXTLYZzpWSc3ASt8cq3opI3qjEg=";
};
cargoHash = "sha256-+z6oFjmPr2bLf81F4Q3dJC+x+RWeZnnnMHrWLphTsq0=";
cargoHash = "sha256-swhj9JQsDCFYzB/+qKffcdcIOAZ1HXmrgZ/Iy/rxG1M=";
__structuredAttrs = true;
strictDeps = true;
@@ -65,16 +65,12 @@ rustPlatform.buildRustPackage (finalAttrs: {
installPhase = ''
runHook preInstall
clapDir="${
if stdenv.hostPlatform.isDarwin then "$out/Library/Audio/Plug-Ins/CLAP" else "$out/lib/clap"
}"
vst3Dir="${
if stdenv.hostPlatform.isDarwin then "$out/Library/Audio/Plug-Ins/VST3" else "$out/lib/vst3"
}"
mkdir -p "$clapDir" "$vst3Dir"
mkdir -p "$vst3Dir"
cp -r "target/bundled/Nebula De-Esser.clap" "$clapDir/"
cp -r "target/bundled/Nebula De-Esser.vst3" "$vst3Dir/"
runHook postInstall