From d201d050ab45004300f4eba78e1e745bd7725d50 Mon Sep 17 00:00:00 2001 From: TheTaoOfSu Date: Wed, 29 Apr 2026 13:57:47 +0200 Subject: [PATCH] Basic shell.nix to start with gcc, universal-ctags, and uriparser --- shell.nix | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 shell.nix diff --git a/shell.nix b/shell.nix new file mode 100644 index 0000000..1e1ff1f --- /dev/null +++ b/shell.nix @@ -0,0 +1,8 @@ +{ pkgs ? import {} }: + pkgs.mkShell { + nativeBuildInputs = with pkgs.buildPackages; [ + gcc + universal-ctags + uriparser + ]; +}