Files
NoteWrapper/shell.nix
T
2026-03-30 14:12:19 +02:00

11 lines
138 B
Nix

{ pkgs ? import <nixpkgs> {} }:
pkgs.mkShell {
buildInputs = [
pkgs.cjson
pkgs.ncurses
pkgs.pkg-config
pkgs.gdb
];
}