mirror of
https://codeberg.org/unspeaker/tek.git
synced 2025-12-06 19:56:42 +01:00
13 lines
279 B
Nix
13 lines
279 B
Nix
{pkgs?import<nixpkgs>{}}:pkgs.mkShell{
|
|
nativeBuildInputs = with pkgs; [
|
|
pkg-config
|
|
];
|
|
buildInputs = with pkgs; [
|
|
jack2
|
|
lilv
|
|
serd
|
|
libclang
|
|
];
|
|
VST3_SDK_DIR = "/home/user/Lab/Music/tek/vst3sdk/";
|
|
LIBCLANG_PATH = "${pkgs.libclang.lib.outPath}/lib";
|
|
}
|