aboutsummaryrefslogtreecommitdiff
path: root/shell.nix
blob: 6647728c0f97382524c4c2907ced39e3f527ef41 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
{
  pkgs ? import <nixpkgs> { },
}:
pkgs.mkShell {
  buildInputs = with pkgs; [
    libressl_3_9
    ninja
    clang_19
    (llvmPackages_19.clang-tools.override { enableLibcxx = true; })
  ];
}