Add shell.nix

This commit is contained in:
Konrad Borowski 2020-10-10 10:40:47 +02:00
parent 742c7fe1e5
commit d1563272af

5
shell.nix Normal file
View File

@ -0,0 +1,5 @@
{ pkgs ? import <nixpkgs> { } }:
with pkgs;
mkShell {
buildInputs = [ cargo nodejs-12_x openssl pkg-config postgresql.lib ];
}