nix-flake-examples/rust/flake.nix
2024-11-02 20:45:41 -07:00

28 lines
690 B
Nix

{
description = "Good basic flake template";
inputs = {
nixpkgs.url = "nixpkgs/nixpkgs-unstable";
flake-utils.url = "github:numtide/flake-utils";
};
outputs = { self, nixpkgs, flake-utils }:
flake-utils.lib.eachDefaultSystem (system:
let
systempkgs = nixpkgs.legacyPackages.${system};
in
{
devShells.default = systempkgs.mkShell {
buildInputs = with systempkgs; [
# specific nodejs versions available, e.g. nodejs_18
rustc
cargo
rust-analyzer
rustup
openssl.dev
pkg-config
];
};
}
);
}