summary refs log tree commit diff
path: root/pkgs/applications/blockchains/erigon/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/applications/blockchains/erigon/default.nix')
-rw-r--r--pkgs/applications/blockchains/erigon/default.nix38
1 files changed, 38 insertions, 0 deletions
diff --git a/pkgs/applications/blockchains/erigon/default.nix b/pkgs/applications/blockchains/erigon/default.nix
new file mode 100644
index 00000000000..f4e5b1de652
--- /dev/null
+++ b/pkgs/applications/blockchains/erigon/default.nix
@@ -0,0 +1,38 @@
+{ lib, buildGoModule, fetchFromGitHub }:
+
+let
+  pinData = lib.importJSON ./pin.json;
+in
+buildGoModule rec {
+  pname = "erigon";
+  version = pinData.version;
+
+  src = fetchFromGitHub {
+    owner = "ledgerwatch";
+    repo = pname;
+    rev = "v${version}";
+    sha256 = pinData.sha256;
+    fetchSubmodules = true;
+  };
+
+  vendorSha256 = pinData.vendorSha256;
+  proxyVendor = true;
+
+  # Build errors in mdbx when format hardening is enabled:
+  #   cc1: error: '-Wformat-security' ignored without '-Wformat' [-Werror=format-security]
+  hardeningDisable = [ "format" ];
+
+  subPackages = [
+    "cmd/erigon"
+    "cmd/evm"
+    "cmd/rpcdaemon"
+    "cmd/rlpdump"
+  ];
+
+  meta = with lib; {
+    homepage = "https://github.com/ledgerwatch/erigon/";
+    description = "Ethereum node implementation focused on scalability and modularity";
+    license = with licenses; [ lgpl3Plus gpl3Plus ];
+    maintainers = with maintainers; [ d-xo happysalada ];
+  };
+}