pastebin/shell.nix
2020-10-11 12:45:29 +02:00

7 lines
148 B
Nix

{ pkgs ? import <nixpkgs> { } }:
with pkgs;
mkShell {
buildInputs =
[ cargo clippy nodejs-12_x openssl pkg-config postgresql.lib rustfmt ];
}