mirror of
https://github.com/danielmiessler/Fabric.git
synced 2026-02-13 15:34:59 -05:00
26 lines
609 B
Nix
26 lines
609 B
Nix
{
|
|
lib,
|
|
buildGoApplication,
|
|
}:
|
|
|
|
buildGoApplication {
|
|
pname = "fabric-ai";
|
|
version = import ./version.nix;
|
|
src = ../../.;
|
|
pwd = ../../.;
|
|
modules = ../../gomod2nix.toml;
|
|
|
|
ldflags = [
|
|
"-s"
|
|
"-w"
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "Fabric is an open-source framework for augmenting humans using AI. It provides a modular framework for solving specific problems using a crowdsourced set of AI prompts that can be used anywhere";
|
|
homepage = "https://github.com/danielmiessler/fabric";
|
|
license = licenses.mit;
|
|
platforms = platforms.all;
|
|
mainProgram = "fabric";
|
|
};
|
|
}
|