pastebin/shell.nix

7 lines
159 B
Nix
Raw Permalink Normal View History

2020-10-10 08:40:47 +00:00
{ pkgs ? import <nixpkgs> { } }:
with pkgs;
mkShell {
2020-10-11 10:45:29 +00:00
buildInputs =
2022-05-07 06:26:29 +00:00
[ cargo clippy diesel-cli nodejs-16_x openssl pkg-config postgresql.lib rustfmt ];
2020-10-10 08:40:47 +00:00
}