fly-apps/shell.nix
2023-10-26 12:07:20 -04:00

12 lines
239 B
Nix

{ pkgs ? import <nixpkgs> {} }:
pkgs.mkShell {
# nativeBuildInputs is usually what you want -- tools you need to run
nativeBuildInputs = with pkgs.buildPackages; [
ripgrep
envsubst
postgresql
];
DOCKER_BUILDKIT = 1;
}