aboutsummaryrefslogtreecommitdiff
path: root/shell.nix
blob: 55c76507cb27fd90aff0dedc74e311d2e1de4ca5 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
{
  pkgs ? import <nixpkgs> { },
}:
pkgs.mkShell {
  buildInputs = with pkgs; [
    libressl
    ninja
    clang
  ];
}