Add initial rust template?

This commit is contained in:
Daniel Flanagan 2023-12-19 10:33:43 -06:00
parent 5d0d010ae6
commit 315059c5d8
Signed by: lytedev
GPG key ID: 5B2020A0F9921EF4
3 changed files with 35 additions and 0 deletions

1
templates/rust/.envrc Normal file
View file

@ -0,0 +1 @@
use flake

2
templates/rust/.gitignore vendored Normal file
View file

@ -0,0 +1,2 @@
/target
/.direnv

32
templates/rust/flake.nix Normal file
View file

@ -0,0 +1,32 @@
{
inputs.nixpkgs.url = "github:NixOS/nixpkgs?rev=e4ad989506ec7d71f7302cc3067abd82730a4beb";
outputs = {
self,
nixpkgs,
}: let
supportedSystems = ["x86_64-linux"];
forEachSupportedSystem = f:
nixpkgs.lib.genAttrs supportedSystems (system:
f {
inherit system;
pkgs = import nixpkgs {inherit system;};
});
in {
devShells = forEachSupportedSystem ({
pkgs,
system,
}: {
rust-development = pkgs.mkShell {
buildInputs = with pkgs; [
cargo
rustc
rustfmt
rustPackages.clippy
rust-analyzer
];
};
default = forEachSupportedSystem ({system, ...}: self.outputs.${system}.rust-development);
});
};
}