Skip to content

Commit 2f37981

Browse files
committed
fabric-ai: init at 1.4.14
1 parent d71660e commit 2f37981

File tree

1 file changed

+35
-0
lines changed

1 file changed

+35
-0
lines changed
Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
{
2+
lib,
3+
buildGoModule,
4+
fetchFromGitHub,
5+
nix-update-script,
6+
}:
7+
8+
buildGoModule rec {
9+
pname = "fabric-ai";
10+
version = "1.4.14";
11+
12+
src = fetchFromGitHub {
13+
owner = "danielmiessler";
14+
repo = "fabric";
15+
rev = "v${version}";
16+
hash = "sha256-syQVGtEFCC7ZVcs6ZIJgH0EXItclV2rPO7xTfsG2g7Q=";
17+
};
18+
19+
vendorHash = "sha256-CHgeHumWtNt8SrbzzCWqBdLxTmmyDD2bfLkriPeez2E=";
20+
21+
ldflags = [
22+
"-s"
23+
"-w"
24+
];
25+
26+
passthru.updateScript = nix-update-script { };
27+
28+
meta = {
29+
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";
30+
homepage = "https://github.com/danielmiessler/fabric";
31+
license = lib.licenses.mit;
32+
maintainers = with lib.maintainers; [ jaredmontoya ];
33+
mainProgram = "fabric";
34+
};
35+
}

0 commit comments

Comments
 (0)