7c33fab397
Add https://github.com/fedexist/grafatui as a package to this flake for use as a terminal-based metrics dashboard. Simply structure of the packages directory at the same time.
17 lines
407 B
Nix
17 lines
407 B
Nix
{ inputs, lib, ... }:
|
|
{
|
|
perSystem =
|
|
{ pkgs, system, ... }:
|
|
let
|
|
ethPkgs = inputs.ethereum-nix.packages.${system};
|
|
in
|
|
{
|
|
packages = lib.optionalAttrs (lib.hasSuffix "-linux" system) {
|
|
eth-beacon-genesis = pkgs.callPackage ./eth-beacon-genesis.nix {
|
|
inherit (ethPkgs) bls_1_86;
|
|
};
|
|
grafatui = pkgs.callPackage ./grafatui.nix { };
|
|
};
|
|
};
|
|
}
|