mirror of
https://github.com/status-im/status-web.git
synced 2026-08-27 20:31:12 +00:00
* 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>
37 lines
904 B
Nix
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
|
|
];
|
|
};
|
|
});
|
|
};
|
|
}
|