manifold/shell.nix

8 lines
139 B
Nix
Raw Normal View History

{ pkgs ? import <nixpkgs> {}}:
pkgs.mkShell {
buildInputs = with pkgs; [
openssl
postgresql
pkg-config
];
}