diff options
Diffstat (limited to 'archive/2025/summer/bsc_karidas/shell.nix')
| -rw-r--r-- | archive/2025/summer/bsc_karidas/shell.nix | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/archive/2025/summer/bsc_karidas/shell.nix b/archive/2025/summer/bsc_karidas/shell.nix new file mode 100644 index 000000000..3d480aff4 --- /dev/null +++ b/archive/2025/summer/bsc_karidas/shell.nix @@ -0,0 +1,12 @@ +{ pkgs ? import <nixpkgs> {} }: + +pkgs.mkShell { + buildInputs = with pkgs; [ + gcc + cmake + gnumake + openssl + gtest + zlib + ]; +} |