blob: 47e3bc4cdd03f5a2e47a41f7bf5505928264137f (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
{ pkgs ? import <nixpkgs> {} }:
pkgs.mkShell {
name = "rust-env";
nativeBuildInputs = with pkgs; [
rustc cargo
];
buildInputs = with pkgs; [ openssl pkgconfig ];
RUST_BACKTRACE = 1;
}
|