15 lines
208 B
Nix
15 lines
208 B
Nix
{ pkgs ? import <nixpkgs> {} }:
|
|
|
|
pkgs.mkShell {
|
|
buildInputs = with pkgs; [
|
|
rustup
|
|
pkg-config
|
|
openssl
|
|
];
|
|
|
|
shellHook = ''
|
|
rustup toolchain install stable
|
|
rustup default stable
|
|
'';
|
|
}
|