chore: rewrite devshell, remove checks

This commit is contained in:
Henry-Hiles
2026-03-30 22:16:43 -04:00
committed by Henry Hiles
parent ec5f50c68e
commit 4d59e07006
8 changed files with 34 additions and 278 deletions
+3 -9
View File
@@ -1,27 +1,21 @@
{ inputs, ... }:
{
perSystem =
{
craneLib,
self',
lib,
pkgs,
...
}:
let
uwulib = inputs.self.uwulib.init pkgs;
rocksdbAllFeatures = self'.packages.rocksdb.override {
enableJemalloc = true;
};
in
{
# basic nix shell containing all things necessary to build continuwuity in all flavors manually (on x86_64-linux)
devShells.default = uwulib.build.craneLib.devShell {
devShells.default = craneLib.devShell {
packages = [
pkgs.nodejs
pkgs.pkg-config
pkgs.liburing
pkgs.rust-jemalloc-sys-unprefixed
rocksdbAllFeatures
self'.packages.rocksdb
];
env.LIBCLANG_PATH = lib.makeLibraryPath [ pkgs.llvmPackages.libclang.lib ];
};