mirror of
https://github.com/logos-co/logos-evm-token-list-module.git
synced 2026-08-27 04:11:06 +00:00
Co-authored-by: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
23 lines
714 B
Nix
23 lines
714 B
Nix
{
|
|
description = "Logos token_list module — Uniswap token-lists fetch/parse/merge + custom list (proxyable, fail-closed).";
|
|
|
|
inputs = {
|
|
logos-module-builder.url = "github:logos-co/logos-module-builder";
|
|
};
|
|
|
|
outputs = inputs@{ self, logos-module-builder, ... }:
|
|
let
|
|
nixpkgs = logos-module-builder.inputs.nixpkgs;
|
|
systems = [ "aarch64-darwin" "x86_64-darwin" "aarch64-linux" "x86_64-linux" ];
|
|
forAllSystems = f: nixpkgs.lib.genAttrs systems f;
|
|
in
|
|
{
|
|
packages = forAllSystems (system:
|
|
(logos-module-builder.lib.mkLogosModule {
|
|
src = ./.;
|
|
configFile = ./metadata.json;
|
|
flakeInputs = inputs;
|
|
}).packages.${system});
|
|
};
|
|
}
|