trying to integrate chainlink into opencode
1{
2 inputs = {
3 flake-parts.url = "github:hercules-ci/flake-parts";
4 flake-parts.inputs.nixpkgs-lib.follows = "nixpkgs";
5 nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
6 };
7 outputs =
8 inputs@{ flake-parts, ... }:
9 flake-parts.lib.mkFlake { inherit inputs; } {
10 systems = [
11 "x86_64-linux"
12 "aarch64-linux"
13 "aarch64-darwin"
14 "x86_64-darwin"
15 ];
16 perSystem =
17 { pkgs, ... }:
18 {
19 devShells.default = pkgs.mkShell {
20 buildInputs = [
21 pkgs.bun
22 pkgs.biome
23 ];
24 };
25 };
26 };
27}