nix-steipete-tools/tools/summarize/flake.nix
2026-01-04 13:16:38 +01:00

28 lines
623 B
Nix

{
description = "clawdbot plugin: summarize";
inputs = {
nixpkgs.url = "github:NixOS/nixpkgs/nixpkgs-unstable";
root.url = "path:../..";
};
outputs = { self, nixpkgs, root }:
let
system = "aarch64-darwin";
pkgs = import nixpkgs { inherit system; };
summarize = root.packages.${system}.summarize;
in {
packages.${system}.summarize = summarize;
clawdbotPlugin = {
name = "summarize";
skills = [ ./skills/summarize ];
packages = [ summarize ];
needs = {
stateDirs = [];
requiredEnv = [];
};
};
};
}