mirror of
https://codeberg.org/unspeaker/tek.git
synced 2025-04-30 14:20:14 +02:00
42 lines
804 B
Nix
Executable file
42 lines
804 B
Nix
Executable file
#!/usr/bin/env nix-shell
|
|
{pkgs?import<nixpkgs>{}}:let
|
|
#suil = pkgs.enableDebugging (pkgs.suil.overrideAttrs (a: b: {
|
|
#dontStrip = true; separateDebugInfo = true;
|
|
#}));
|
|
in pkgs.mkShell {
|
|
nativeBuildInputs = with pkgs; [
|
|
pkg-config
|
|
freetype
|
|
libclang
|
|
#bear
|
|
];
|
|
buildInputs = with pkgs; [
|
|
jack2
|
|
lilv
|
|
serd
|
|
libclang
|
|
#suil
|
|
glib
|
|
gtk3
|
|
];
|
|
VST3_SDK_DIR = "/home/user/Lab/Music/tek/vst3sdk/";
|
|
LIBCLANG_PATH = "${pkgs.libclang.lib.outPath}/lib";
|
|
LD_LIBRARY_PATH = pkgs.lib.makeLibraryPath (with pkgs; [
|
|
pipewire.jack
|
|
# for ChowKick.lv2:
|
|
freetype
|
|
libgcc.lib
|
|
# for Panagement
|
|
xorg.libX11
|
|
xorg.libXcursor
|
|
xorg.libXi
|
|
libxkbcommon
|
|
#suil
|
|
# for Helm:
|
|
alsa-lib
|
|
curl
|
|
libglvnd
|
|
#xorg_sys_opengl
|
|
]);
|
|
}
|