8 lines
77 B
Nix
8 lines
77 B
Nix
with import <nixpkgs> {};
|
|
mkShell {
|
|
buildInputs = [
|
|
postgresql
|
|
];
|
|
}
|
|
|