This repository has been archived on 2025-03-02. You can view files and clone it, but cannot push or open issues or pull requests.
vxlan-router/shell.nix

12 lines
137 B
Nix
Raw Normal View History

2025-01-30 13:12:52 +01:00
let
pkgs = import <nixpkgs> { };
in
2025-01-29 17:08:31 +01:00
pkgs.mkShell {
2025-01-30 13:12:52 +01:00
buildInputs = with pkgs; [
cargo
rustc
rustfmt
nixos-shell
];
2025-01-29 17:08:31 +01:00
}