Files
continuwuity/nix/devshell.nix
T

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

24 lines
546 B
Nix
Raw Normal View History

2025-09-24 14:33:20 +02:00
{
perSystem =
{
2026-03-30 22:16:43 -04:00
craneLib,
2025-09-24 14:33:20 +02:00
self',
lib,
pkgs,
...
}:
{
# basic nix shell containing all things necessary to build continuwuity in all flavors manually (on x86_64-linux)
2026-03-30 22:16:43 -04:00
devShells.default = craneLib.devShell {
2025-09-24 14:33:20 +02:00
packages = [
2026-03-24 11:12:45 -04:00
pkgs.nodejs
2025-09-24 14:33:20 +02:00
pkgs.pkg-config
pkgs.liburing
pkgs.rust-jemalloc-sys-unprefixed
2026-03-30 22:16:43 -04:00
self'.packages.rocksdb
2025-09-24 14:33:20 +02:00
];
env.LIBCLANG_PATH = lib.makeLibraryPath [ pkgs.llvmPackages.libclang.lib ];
};
};
}