forked from evmos/evmos
-
Notifications
You must be signed in to change notification settings - Fork 3
/
default.nix
46 lines (44 loc) · 1.6 KB
/
default.nix
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
{ lib
, buildGoApplication
, buildPackages
, stdenv
, rev ? "dirty"
, rocksdb
, static ? stdenv.hostPlatform.isStatic
, dbBackend ? "goleveldb"
}:
let
version = if dbBackend == "rocksdb" then "latest-rocksdb" else "latest";
pname = "evmosd";
tags = [ "ledger" "netgo" ] ++ lib.optionals (dbBackend == "rocksdb") [ "rocksdb" "grocksdb_clean_link" ];
ldflags = lib.concatStringsSep "\n" ([
"-X github.com/cosmos/cosmos-sdk/version.Name=evmos"
"-X github.com/cosmos/cosmos-sdk/version.AppName=${pname}"
"-X github.com/cosmos/cosmos-sdk/version.Version=${version}"
"-X github.com/cosmos/cosmos-sdk/version.BuildTags=${lib.concatStringsSep "," tags}"
"-X github.com/cosmos/cosmos-sdk/version.Commit=${rev}"
"-X github.com/cosmos/cosmos-sdk/types.DBBackend=${dbBackend}"
]);
buildInputs = lib.optionals (dbBackend == "rocksdb") [ rocksdb ];
in
buildGoApplication rec {
inherit pname version buildInputs tags ldflags;
go = buildPackages.go_1_20;
src = ./.;
modules = ./gomod2nix.toml;
doCheck = false;
pwd = src; # needed to support replace
subPackages = [ "cmd/evmosd" ];
CGO_ENABLED = "1";
postFixup = if dbBackend == "rocksdb" then
''
# Rename the binary from evmosd to evmosd-rocksdb
mv $out/bin/evmosd $out/bin/evmosd-rocksdb
'' else '''';
meta = with lib; {
description = "Evmos is a scalable and interoperable blockchain, built on Proof-of-Stake with fast-finality using the Cosmos SDK which runs on top of CometBFT Core consensus engine.";
homepage = "https://github.com/evmos/evmos";
license = licenses.asl20;
mainProgram = "evmosd";
};
}