create nix shell file

This commit is contained in:
akulij 2025-04-07 14:27:56 +00:00
parent baa7298106
commit 7102dcb1be

4
shell.nix Normal file
View File

@ -0,0 +1,4 @@
{ pkgs ? import <nixpkgs> { } }:
pkgs.mkShell {
buildInputs = with pkgs; [ cargo rustc pkg-config sqlite diesel-cli];
}