mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-23 23:43:30 +00:00
Merge pull request #266712 from ekimber/mev-boost-1.6
mev-boost: init at 1.6
This commit is contained in:
commit
e1a4a8b5f3
@ -5163,6 +5163,12 @@
|
||||
name = "Edvin Källström";
|
||||
githubId = 84442052;
|
||||
};
|
||||
ekimber = {
|
||||
email = "ekimber@protonmail.com";
|
||||
github = "ekimber";
|
||||
name = "Edward Kimber";
|
||||
githubId = 99987;
|
||||
};
|
||||
ekleog = {
|
||||
email = "leo@gaspard.io";
|
||||
matrix = "@leo:gaspard.ninja";
|
||||
|
27
pkgs/by-name/me/mev-boost/package.nix
Normal file
27
pkgs/by-name/me/mev-boost/package.nix
Normal file
@ -0,0 +1,27 @@
|
||||
{ lib
|
||||
, stdenv
|
||||
, buildGoModule
|
||||
, fetchFromGitHub
|
||||
}:
|
||||
|
||||
buildGoModule rec {
|
||||
pname = "mev-boost";
|
||||
version = "1.6";
|
||||
src = fetchFromGitHub {
|
||||
owner = "flashbots";
|
||||
repo = "mev-boost";
|
||||
rev = "v${version}";
|
||||
hash = "sha256-vzgX9irpI5i85bohppyL5KWQuf71SryRu1gkhWSCVKk=";
|
||||
};
|
||||
|
||||
vendorHash = "sha256-xw3xVbgKUIDXu4UQD5CGftON8E4o1u2FcrPo3n6APBE=";
|
||||
|
||||
meta = with lib; {
|
||||
description = "Ethereum block-building middleware";
|
||||
homepage = "https://github.com/flashbots/mev-boost";
|
||||
license = licenses.mit;
|
||||
mainProgram = "mev-boost";
|
||||
maintainers = with maintainers; [ ekimber ];
|
||||
platforms = platforms.unix;
|
||||
};
|
||||
}
|
Loading…
Reference in New Issue
Block a user