fix: devshell fixes

Co-authored-by: kraem <
me@kraem.xyz>
This commit is contained in:
Henry-Hiles
2026-03-31 17:39:17 -04:00
committed by Henry Hiles
parent c822c945e7
commit c278663f65
+16 -5
View File
@@ -11,13 +11,24 @@
# basic nix shell containing all things necessary to build continuwuity in all flavors manually (on x86_64-linux)
devShells.default = craneLib.devShell {
packages = [
pkgs.nodejs
pkgs.pkg-config
pkgs.liburing
pkgs.rust-jemalloc-sys-unprefixed
self'.packages.rocksdb
pkgs.rust-jemalloc-sys-unprefixed
pkgs.nodejs
pkgs.liburing
pkgs.pkg-config
];
env.LIBCLANG_PATH = lib.makeLibraryPath [ pkgs.llvmPackages.libclang.lib ];
env = {
LIBCLANG_PATH = lib.makeLibraryPath [ pkgs.llvmPackages.libclang.lib ];
LD_LIBRARY_PATH = lib.makeLibraryPath [
pkgs.liburing
pkgs.jemalloc
pkgs.stdenv.cc.cc.lib
];
PKG_CONFIG_PATH = lib.makeSearchPath "lib/pkgconfig" [
pkgs.liburing.dev
];
};
};
};
}