We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5f4c1b2 commit b481bd6Copy full SHA for b481bd6
pkgs/vouch/unstable.nix
@@ -0,0 +1,32 @@
1
+{
2
+ buildGoModule,
3
+ fetchFromGitHub,
4
+ mcl,
5
+ bls,
6
+ lib,
7
+}:
8
+buildGoModule rec {
9
+ pname = "vouch";
10
+ version = "1.8.0-beta.3";
11
+
12
+ src = fetchFromGitHub {
13
+ owner = "attestantio";
14
+ repo = pname;
15
+ rev = "v${version}";
16
+ hash = "sha256-CK6cLXJYMQL+ZRv8bYabgQ0GeDWK8Jcek6d/Wow2LI0=";
17
+ };
18
19
+ runVend = true;
20
+ vendorHash = "sha256-Mp+RA2L4mOe089ceyKh3m5Q8zLsdwyx6geMFrqbn5Dk=";
21
22
+ buildInputs = [mcl bls];
23
24
+ doCheck = false;
25
26
+ meta = {
27
+ description = "An Ethereum 2 multi-node validator client";
28
+ homepage = "https://github.com/attestantio/vouch";
29
+ mainProgram = "vouch";
30
+ platforms = ["x86_64-linux"];
31
32
+}
0 commit comments