openmetrics-vici-exporter/shell.nix

6 lines
136 B
Nix
Raw Normal View History

2023-06-27 21:00:25 +02:00
{ pkgs ? import <nixpkgs> {} }:
pkgs.mkShell {
packages = with pkgs; [ rustc cargo gcc rustfmt clippy ];
name = "rust-env";
}