Public release release-ffc6f14a3723

Source commit: ffc6f14a3723ea6aa513613a5406d737f21b201d

Public tree identity: sha256:a77575c31dda8de868bc8de91d94df55c46f0b028e755e56a8cce8e27f72a42b
This commit is contained in:
Clusterflux release 2026-07-19 16:41:50 +02:00
commit 3996d91ee0
221 changed files with 81123 additions and 0 deletions

35
flake.nix Normal file
View file

@ -0,0 +1,35 @@
{
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)"
'';
};
});
};
}