add libfmt to replace current logging mechanism

Signed-off-by: Amneesh Singh <natto@weirdnatto.in>
This commit is contained in:
2023-09-13 03:43:24 +05:30
parent 332f0b87d6
commit 904e2b698e
4 changed files with 57 additions and 86 deletions

View File

@@ -19,7 +19,14 @@
llvm = pkgs.llvmPackages_16;
stdenv = llvm.libcxxStdenv;
nativeBuildInputs = with pkgs; [ meson ninja ];
nativeBuildInputs = with pkgs; [
meson
ninja
# libraries
pkg-config
fmt.dev
];
in
rec {
packages = rec {
@@ -49,7 +56,6 @@
# other tools
valgrind
llvm.lldb
]);
};