fork
Configure Feed
Select the types of activity you want to include in your feed.
nixpkgs mirror (for testing)
github.com/NixOS/nixpkgs
nix
fork
Configure Feed
Select the types of activity you want to include in your feed.
1{
2 lib,
3 fetchzip,
4}:
5fetchzip rec {
6 name = "vst2-sdk-${version}"; # cannot be `pname`, as `fetchzip` expects `name`
7 version = "2018-06-11";
8 url = "https://web.archive.org/web/20181016150224if_/https://download.steinberg.net/sdk_downloads/vstsdk3610_11_06_2018_build_37.zip";
9 hash = "sha256-TyPy8FsXWB8LRz0yr38t3d5xxAxGufAn0dsyrg1JXBA=";
10
11 # Only keep the VST2_SDK directory
12 stripRoot = false;
13 postFetch = ''
14 mv $out/VST_SDK/VST2_SDK/* $out/
15 rm -rf $out/VST_SDK
16 '';
17
18 meta = {
19 description = "VST2 source development kit";
20 longDescription = ''
21 VST2 is proprietary, and deprecated by Steinberg.
22 As such, it should only be used for legacy reasons.
23 '';
24 license = [ lib.licenses.unfree ];
25 };
26}