2024-10-10 11:02:49 +02:00
|
|
|
{
|
|
|
|
inputs = {
|
|
|
|
nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
|
|
|
|
flake-utils.url = "github:numtide/flake-utils";
|
|
|
|
rust-overlay = {
|
|
|
|
url = "github:oxalica/rust-overlay";
|
|
|
|
inputs = {
|
|
|
|
nixpkgs.follows = "nixpkgs";
|
|
|
|
flake-utils.follows = "flake-utils";
|
|
|
|
};
|
|
|
|
};
|
|
|
|
};
|
|
|
|
outputs = { self, nixpkgs, flake-utils, rust-overlay }:
|
|
|
|
flake-utils.lib.eachDefaultSystem
|
|
|
|
(system:
|
|
|
|
let
|
|
|
|
overlays = [ (import rust-overlay) ];
|
|
|
|
pkgs = import nixpkgs {
|
|
|
|
inherit system overlays;
|
|
|
|
};
|
|
|
|
rustToolchain = pkgs.pkgsBuildHost.rust-bin.fromRustupToolchainFile ./rust-toolchain.toml;
|
|
|
|
in
|
|
|
|
with pkgs;
|
|
|
|
{
|
|
|
|
devShells.default = mkShell {
|
|
|
|
# 👇 we can just use `rustToolchain` here:
|
2024-10-10 12:42:44 +02:00
|
|
|
buildInputs = [
|
|
|
|
rustToolchain
|
|
|
|
openssl
|
|
|
|
];
|
2024-10-10 11:02:49 +02:00
|
|
|
};
|
|
|
|
}
|
|
|
|
);
|
|
|
|
}
|