mirror of
https://codeberg.org/unspeaker/vestal.git
synced 2025-12-06 10:46:42 +01:00
with_pe; stub execute command
This commit is contained in:
parent
940814470f
commit
c0cf91b7af
6 changed files with 536 additions and 57 deletions
41
shell.nix
Executable file
41
shell.nix
Executable file
|
|
@ -0,0 +1,41 @@
|
|||
#!/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
|
||||
]);
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue