8 lines
139 B
Nix
8 lines
139 B
Nix
|
|
{ pkgs ? import <nixpkgs> {}}:
|
||
|
|
pkgs.mkShell {
|
||
|
|
buildInputs = with pkgs; [
|
||
|
|
openssl
|
||
|
|
postgresql
|
||
|
|
pkg-config
|
||
|
|
];
|
||
|
|
}
|