badgey/shell.nix

8 lines
139 B
Nix
Raw Normal View History

2024-01-15 07:59:53 +00:00
{ pkgs ? import <nixpkgs> {}}:
pkgs.mkShell {
buildInputs = with pkgs; [
openssl
postgresql
pkg-config
];
}