nimbus-eth2/nix/shell.nix
tersec eb30b741d9
bump nimbus-build-system to use Nim v2.0.10 (#6592)
* bump nimbus-build-system to use Nim v2.0.10

* fix `CatchableError` leak on Windows

* define ERROR_INVALID_ACCESS

* trigger finding correct hashes for nix build

* check checksums checksum

* update nix nimble checksum

* csources didn't change
2024-10-03 17:13:44 +02:00

44 lines
1.1 KiB
Nix

{ pkgs ? import <nixpkgs> {}}:
let
mkdocs-packages = ps: with ps; [
mkdocs
mkdocs-material
mkdocs-material-extensions
pymdown-extensions
];
mkdocs-python = pkgs.python3.withPackages mkdocs-packages;
in pkgs.mkShell {
buildInputs = with pkgs; [
figlet
git
git-lfs
gnumake
getopt
# For the local simulation
openssl # for generating the JWT file
lsof # for killing processes by port
killall # for killing processes manually
curl # for working with the node APIs
jq # for parsing beacon API for LC start
openjdk # for running web3signer
mkdocs-python
] ++ lib.optionals (!stdenv.isDarwin) [
lsb-release
];
shellHook = ''
# By default, the Nix wrapper scripts for executing the system compilers
# will erase `-march=native` because this introduces impurity in the build.
# For the purposes of compiling Nimbus, this behavior is not desired:
export NIX_ENFORCE_NO_NATIVE=0
export USE_SYSTEM_GETOPT=1
export MAKEFLAGS="-j$NIX_BUILD_CORES"
figlet "Welcome to Nimbus-eth2"
'';
}