Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
27 lines
745 B
Nix
27 lines
745 B
Nix
{
|
|
lib,
|
|
fetchzip,
|
|
}:
|
|
fetchzip rec {
|
|
name = "vst2-sdk-${version}"; # cannot be `pname`, as `fetchzip` expects `name`
|
|
version = "2018-06-11";
|
|
url = "https://web.archive.org/web/20181016150224if_/https://download.steinberg.net/sdk_downloads/vstsdk3610_11_06_2018_build_37.zip";
|
|
hash = "sha256-TyPy8FsXWB8LRz0yr38t3d5xxAxGufAn0dsyrg1JXBA=";
|
|
|
|
# Only keep the VST2_SDK directory
|
|
stripRoot = false;
|
|
postFetch = ''
|
|
mv $out/VST_SDK/VST2_SDK/* $out/
|
|
rm -rf $out/VST_SDK
|
|
'';
|
|
|
|
meta = {
|
|
description = "VST2 source development kit";
|
|
longDescription = ''
|
|
VST2 is proprietary, and deprecated by Steinberg.
|
|
As such, it should only be used for legacy reasons.
|
|
'';
|
|
license = [ lib.licenses.unfree ];
|
|
};
|
|
}
|