mirror of
https://github.com/waku-org/nwaku.git
synced 2025-02-05 03:25:04 +00:00
a0d8cadcbb
* chore(ci): add zerokit test * fix(ci): typo * fix(Makefile): RLN points to zerokit, RLNKILIC points to kilic impl * fix(ci): remove zerokit test workflow now that zerokit is default * fix(Makefile): zerokit in ci * fix(Makefile): do not compile kilic by default * test(nix): add llvm to nix shell * test(nix): clang * fix(nix): mkShell * fix(nix): mkShell * fix(nix): err * fix(nix): add binutils to macos nix shell * fix(nix): test with musl-tools * fix(nix): remove musl-tools * fix(nix): add Security module * fix(nix): gcc for linux, clang for macos * test(Makefile): set CC to env * Revert "test(Makefile): set CC to env" This reverts commit fdab95f2cd0bdef916744d793ebf7005dd1d4396. * test(nimbus-build-system): bad gcc * fix(nix): remove optional for linux * Revert "test(nimbus-build-system): bad gcc" This reverts commit c6b81f81320281765f6b0eb231a15adf28279ef0. * fix(nix): semicolon Co-authored-by: G <28568419+s1fr0@users.noreply.github.com>
19 lines
518 B
Nix
19 lines
518 B
Nix
{ pkgs ? import (builtins.fetchTarball {
|
|
url = "https://github.com/NixOS/nixpkgs/archive/dbf1d73cd1a17276196afeee169b4cf7834b7a96.tar.gz";
|
|
sha256 = "sha256:1k5nvn2yzw370cqsfh62lncsgydq2qkbjrx34cprzf0k6b93v7ch";
|
|
}) {} }:
|
|
|
|
pkgs.mkShell {
|
|
name = "nim-waku-build-shell";
|
|
|
|
# Versions dependent on nixpkgs commit. Update manually.
|
|
buildInputs = with pkgs; [
|
|
git # 2.37.3
|
|
which # 2.21
|
|
rustc # 1.63.0
|
|
] ++ lib.optionals stdenv.isDarwin [
|
|
libiconv
|
|
darwin.apple_sdk.frameworks.Security
|
|
];
|
|
}
|