From 6321fd15864018b8a56c4b124f0ae26b34241891 Mon Sep 17 00:00:00 2001 From: 0xb10c Date: Wed, 20 Dec 2023 13:00:50 +0100 Subject: [PATCH] add: shell.nix --- shell.nix | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 shell.nix diff --git a/shell.nix b/shell.nix new file mode 100644 index 0000000..18ca5c4 --- /dev/null +++ b/shell.nix @@ -0,0 +1,11 @@ +{ pkgs ? import {} }: + +pkgs.mkShell { + nativeBuildInputs = [ + pkgs.cargo + pkgs.rustfmt + pkgs.rustc + pkgs.postgresql + pkgs.diesel-cli + ]; +}