Skip to content

Commit

Permalink
fabric: init at 1.4.72
Browse files Browse the repository at this point in the history
  • Loading branch information
DJE98 committed Oct 26, 2024
1 parent f251273 commit 9627d3c
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions pkgs/tools/llm/fabric-ai/default.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
{ pkgs ? import <nixpkgs> {} }:

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" ];
};
}

0 comments on commit 9627d3c

Please sign in to comment.