dev-templates/rust/flake.nix

52 lines
1.5 KiB
Nix
Raw Permalink Normal View History

2022-07-16 16:48:23 +02:00
{
description = "A Nix-flake-based Rust development environment";
inputs = {
2024-01-18 13:42:47 +01:00
nixpkgs.url = "https://flakehub.com/f/NixOS/nixpkgs/0.1.*.tar.gz";
2023-12-21 19:45:59 +01:00
rust-overlay = {
url = "github:oxalica/rust-overlay";
inputs.nixpkgs.follows = "nixpkgs";
};
2022-07-16 16:48:23 +02:00
};
2024-04-25 12:26:02 +02:00
outputs = { self, nixpkgs, rust-overlay }:
2024-01-23 14:44:07 +01:00
let
overlays = [
rust-overlay.overlays.default
(final: prev: {
rustToolchain =
let
rust = prev.rust-bin;
in
2024-04-25 12:26:02 +02:00
if builtins.pathExists ./rust-toolchain.toml then
rust.fromRustupToolchainFile ./rust-toolchain.toml
else if builtins.pathExists ./rust-toolchain then
rust.fromRustupToolchainFile ./rust-toolchain
2024-02-08 12:58:54 +01:00
else
rust.stable.latest.default.override {
extensions = [ "rust-src" "rustfmt" ];
};
2024-01-23 14:44:07 +01:00
})
];
supportedSystems = [ "x86_64-linux" "aarch64-linux" "x86_64-darwin" "aarch64-darwin" ];
2024-04-25 12:26:02 +02:00
forEachSupportedSystem = f: nixpkgs.lib.genAttrs supportedSystems (system: f {
pkgs = import nixpkgs { inherit overlays system; };
});
2024-01-23 14:44:07 +01:00
in
{
devShells = forEachSupportedSystem ({ pkgs }: {
default = pkgs.mkShell {
packages = with pkgs; [
rustToolchain
openssl
pkg-config
cargo-deny
cargo-edit
cargo-watch
rust-analyzer
];
};
});
};
2022-07-16 16:48:23 +02:00
}