Basic shell.nix to start with gcc, universal-ctags, and uriparser

This commit is contained in:
TheTaoOfSu 2026-04-29 13:57:47 +02:00
parent 3a2295606f
commit d201d050ab

8
shell.nix Normal file
View file

@ -0,0 +1,8 @@
{ pkgs ? import <nixpkgs> {} }:
pkgs.mkShell {
nativeBuildInputs = with pkgs.buildPackages; [
gcc
universal-ctags
uriparser
];
}