11 lines
152 B
Nix
11 lines
152 B
Nix
|
|
{pkgs ? import <nixpkgs> {}}:
|
||
|
|
|
||
|
|
pkgs.mkShell {
|
||
|
|
buildInputs = with pkgs; [
|
||
|
|
cargo
|
||
|
|
rustc
|
||
|
|
pkg-config
|
||
|
|
openssl
|
||
|
|
];
|
||
|
|
}
|