diff --git a/pkgs/tools/llm/fabric-ai/default.nix b/pkgs/tools/llm/fabric-ai/default.nix new file mode 100644 index 0000000000000..838f681fffbb8 --- /dev/null +++ b/pkgs/tools/llm/fabric-ai/default.nix @@ -0,0 +1,24 @@ +{ pkgs ? import {} }: + +pkgs.buildGoModule { + pname = "fabric-ai"; + version = "1.4.72"; + + src = pkgs.fetchFromGitHub { + owner = "danielmiessler"; + repo = "fabric"; + rev = "v1.4.72"; + sha256 = "sha256-fPg7D7Ar543SjQ/f/HpyBbZx+sVcSbcHezUFY7q/iVs="; + }; + + vendorHash ="sha256-/nQj0T52xT3MGyM7hsPvvncXlZWjbjA2NBCisidgoWY="; + + meta = with pkgs.lib; { + description = "An open-source framework for augmenting humans using AI"; + homepage = "https://github.com/danielmiessler/fabric"; + mainProgram = "fabric"; + license = licenses.mit; + maintainers = [ "DJE98" ]; + }; +} +