tvl-depot/users/wpcarro/scratch/rust/shell.nix
William Carroll db9cb70d5d feat(wpcarro/rust): Define Rc<T> example
My foray into "smart pointer" land.

Change-Id: I4ca775c72168dd34d90bf88fa41149867cd7fdae
Reviewed-on: https://cl.tvl.fyi/c/depot/+/6244
Tested-by: BuildkiteCI
Reviewed-by: wpcarro <wpcarro@gmail.com>
Autosubmit: wpcarro <wpcarro@gmail.com>
2022-09-06 18:09:30 +00:00

7 lines
94 B
Nix

{ pkgs ? import <nixpkgs> { }, ... }:
pkgs.mkShell {
buildInputs = [
pkgs.cargo
];
}