add thiserror to edn module; 38.57% total cov

This commit is contained in:
🪞👃🪞 2025-02-26 15:09:44 +02:00
parent 77d617f9a0
commit 3837dbd47b
7 changed files with 66 additions and 36 deletions

View file

@ -1,24 +1,13 @@
#!/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
];
stdenv = pkgs.clang19Stdenv;
name = "tek";
nativeBuildInputs = with pkgs; [ pkg-config freetype libclang ];
buildInputs = with pkgs; let
#suil = pkgs.enableDebugging (pkgs.suil.overrideAttrs (a: b: {
#dontStrip = true; separateDebugInfo = true;
#}));
in [ 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; [
@ -38,4 +27,8 @@ in pkgs.mkShell {
libglvnd
#xorg_sys_opengl
]);
in pkgs.mkShell.override {
inherit stdenv;
} {
inherit name nativeBuildInputs buildInputs VST3_SDK_DIR LIBCLANG_PATH LD_LIBRARY_PATH;
}