From 7102dcb1bef4f1d79931d49689afc926e7d9b5bf Mon Sep 17 00:00:00 2001 From: akulij Date: Mon, 7 Apr 2025 14:27:56 +0000 Subject: [PATCH] create nix shell file --- shell.nix | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 shell.nix diff --git a/shell.nix b/shell.nix new file mode 100644 index 0000000..075299b --- /dev/null +++ b/shell.nix @@ -0,0 +1,4 @@ +{ pkgs ? import { } }: +pkgs.mkShell { + buildInputs = with pkgs; [ cargo rustc pkg-config sqlite diesel-cli]; +}