11 lines
175 B
Nix
11 lines
175 B
Nix
{pkgs ? import <nixpkgs> {}}:
|
|
pkgs.mkShell {
|
|
nativeBuildInputs = with pkgs.buildPackages; [
|
|
cargo
|
|
rustc
|
|
rustfmt
|
|
pkg-config
|
|
openssl
|
|
cargo-edit
|
|
];
|
|
}
|