clusterflux-public/flake.nix
Clusterflux release 70319cde15 Public release release-ff7f847f143d
Source commit: ff7f847f143dc67864bed68a86cf259114384bd5

Public tree identity: sha256:bb7dcd2ac78bdbad2f4eba0f49be649d446d67f96f4eb2796941c026412fc032
2026-07-17 09:33:47 +02:00

35 lines
861 B
Nix

{
description = "Clusterflux development and verification environment";
inputs.nixpkgs.url = "github:NixOS/nixpkgs/nixos-25.11";
outputs = { self, nixpkgs }:
let
systems = [ "x86_64-linux" "aarch64-linux" ];
forAllSystems = nixpkgs.lib.genAttrs systems;
in
{
devShells = forAllSystems (system:
let
pkgs = import nixpkgs { inherit system; };
in
{
default = pkgs.mkShell {
packages = with pkgs; [
cargo
clippy
git
jq
nodejs_22
podman
rustc
rustfmt
zip
];
shellHook = ''
echo "Clusterflux shell: $(rustc --version), $(node --version), $(podman --version)"
'';
};
});
};
}