This commit is contained in:
nora 2025-03-16 21:11:05 +01:00
parent 8abd0e0913
commit bcfac2a1ba
2 changed files with 9 additions and 1 deletions

View file

@ -1,4 +1,11 @@
{ pkgs }: pkgs.mkShell {
buildInputs = with pkgs; [ openssl zlib libpq ];
nativeBuildInputs = with pkgs; [ pkg-config cmake ];
nativeBuildInputs = with pkgs; [
pkg-config
cmake
ninja
llvmPackages_19.clang
llvmPackages_19.lld
llvmPackages_19.bintools-unwrapped
];
}