summaryrefslogtreecommitdiff
path: root/shell.nix
diff options
context:
space:
mode:
authorAargh Rai <aargh.rai+git@gmail.com>2026-05-27 11:24:56 +0530
committerAargh Rai <aargh.rai+git@gmail.com>2026-05-27 11:24:56 +0530
commit380d67bada7544f5f10cecc8c9dff7ed2f79e187 (patch)
tree397abd5b77211a17ee2e95c07ba54120db251f5f /shell.nix
parentf5c67c1410c1f9af5da99d2ea02192c21f8abc08 (diff)
server.c
Diffstat (limited to 'shell.nix')
-rw-r--r--shell.nix10
1 files changed, 10 insertions, 0 deletions
diff --git a/shell.nix b/shell.nix
new file mode 100644
index 0000000..9d0bdbb
--- /dev/null
+++ b/shell.nix
@@ -0,0 +1,10 @@
+{ pkgs ? import <nixpkgs> {} }:
+
+pkgs.mkShell {
+ packages = with pkgs; [
+ gcc
+ openssl
+ pkg-config
+ gnumake
+ ];
+}