File tree Expand file tree Collapse file tree 2 files changed +36
-0
lines changed Expand file tree Collapse file tree 2 files changed +36
-0
lines changed Original file line number Diff line number Diff line change 1+ {
2+ fetchFromGitHub ,
3+ openssl ,
4+ pkg-config ,
5+ rustPlatform ,
6+ } :
7+ rustPlatform . buildRustPackage rec {
8+ pname = "blutgang" ;
9+ version = "0.3.0-canary2" ;
10+
11+ src = fetchFromGitHub {
12+ owner = "rainshowerLabs" ;
13+ repo = pname ;
14+ rev = version ;
15+ hash = "sha256-xjDieJgN7BzyCzeKMd3X7dwl/hOnqFPGCtZzlAbVGdI=" ;
16+ } ;
17+
18+ nativeBuildInputs = [
19+ pkg-config
20+ ] ;
21+
22+ buildInputs = [
23+ openssl
24+ ] ;
25+
26+ cargoHash = "sha256-pSdNGmwBCejQbjtfi7YhQmfpoMs9Gxf+6qusD8YSiFc=" ;
27+
28+ meta = {
29+ description = "the wd40 of ethereum load balancers" ;
30+ homepage = "https://github.com/rainshowerLabs/blutgang" ;
31+ mainProgram = "blutgang" ;
32+ platforms = [ "x86_64-linux" ] ;
33+ } ;
34+ }
Original file line number Diff line number Diff line change 2626 besu = callPackage ./besu { } ;
2727 bls = callPackage ./bls { } ;
2828 blst = callPackage ./blst { } ;
29+ blutgang = callPackage ./blutgang { } ;
2930 charon = callPackage ./charon { inherit bls mcl ; } ;
3031 dirk = callPackage ./dirk { inherit bls mcl ; } ;
3132 dreamboat = callPackage ./dreamboat { inherit blst ; } ;
7475
7576 apps = platformApps self' . packages {
7677 besu . bin = "besu" ;
78+ blutgang . bin = "blutgang" ;
7779 charon . bin = "charon" ;
7880 dirk . bin = "dirk" ;
7981 dreamboat . bin = "dreamboat" ;
You can’t perform that action at this time.
0 commit comments