about summary refs log blame commit diff
path: root/shells/rust.nix
blob: 42dfebb30cd89b7ccf0e9f7bdf301c0b5cd998fc (plain) (tree)
1
2
3
4
5
6
7






                                
{ pkgs ? import <nixpkgs> { } }:
pkgs.mkShell {
  name = "rust-shell";
  buildInputs = with pkgs; [
    cargo
  ];
}