relay/flake.nix

15 lines
265 B
Nix
Raw Normal View History

2024-11-27 03:28:27 +00:00
{
description = "relay";
outputs = { self, nixpkgs }: let
pkgs = import nixpkgs { system = "x86_64-linux"; };
in {
devShells."x86_64-linux".default = pkgs.mkShell {
buildInputs = [
pkgs.rustup
pkgs.stdenv
];
};
};
}