Modrinth/shell.nix
2021-11-20 12:02:46 -08:00

8 lines
119 B
Nix

{ pkgs ? import <nixpkgs> {} }:
pkgs.mkShell {
buildInputs = with pkgs; [
rustc cargo openssl pkg-config
];
}