Files
Jinho Jang 79d4998794 Upgrade nixpkgs to version 25.11 in flake.nix (#1109)
* nix: bump nixpkgs to 25.11, add foundry toolchain

Necessary to fix Jenkins CI builds failing with:

@status-im/community-contracts:build: sh: line 1: forge: command not found

Signed-off-by: Jakub Sokołowski <jakub@status.im>

* chore: add few-banks-sin changeset file

---------

Signed-off-by: Jakub Sokołowski <jakub@status.im>
2026-04-14 19:39:58 +09:00

37 lines
904 B
Nix

{
description = "Flake file for Status Web repo ";
inputs = {
nixpkgs.url = "nixpkgs/nixos-25.11";
};
outputs =
{ self, nixpkgs }:
let
supportedSystems = [
"x86_64-linux"
"aarch64-linux"
"x86_64-darwin"
"aarch64-darwin"
];
forEachSystem = nixpkgs.lib.genAttrs supportedSystems;
pkgsFor = forEachSystem (system: import nixpkgs { inherit system; });
in
{
formatter = forEachSystem (system: pkgsFor.${system}.nixpkgs-fmt);
devShells = forEachSystem (system: {
default = pkgsFor.${system}.mkShellNoCC {
packages = with pkgsFor.${system}.buildPackages; [
ghp-import # 2.1.0
git # 2.51.2
nodejs_22 # 22.22.2
openssh # 10.2p1
pnpm # 10.28.0
foundry # 1.4.4
];
};
});
};
}