From 1ef7f328bc3ad76dcf0449a78a4e4ba9e9cb1762 Mon Sep 17 00:00:00 2001 From: Lain Iwakura Date: Sun, 4 Jan 2026 14:09:00 +0300 Subject: feat(linux): some patches --- shell.nix | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 shell.nix (limited to 'shell.nix') diff --git a/shell.nix b/shell.nix new file mode 100644 index 0000000..511a808 --- /dev/null +++ b/shell.nix @@ -0,0 +1,14 @@ +{ pkgs ? import {} }: + +pkgs.mkShell { + buildInputs = with pkgs; [ + ncurses + zlib + ctags + ]; + + shellHook = '' + export NIX_CFLAGS_COMPILE="-I${pkgs.ncurses.dev}/include -I${pkgs.zlib.dev}/include" + export NIX_LDFLAGS="-L${pkgs.ncurses.out}/lib -L${pkgs.zlib.out}/lib" + ''; +} -- cgit 1.4.1