2023-04-20 09:31:54 +00:00
|
|
|
{ lib, buildGoModule, fetchFromGitHub }:
|
|
|
|
|
|
|
|
buildGoModule rec {
|
|
|
|
pname = "aiac";
|
2024-06-12 00:41:33 +00:00
|
|
|
version = "4.3.0";
|
2023-04-20 09:31:54 +00:00
|
|
|
excludedPackages = [".ci"];
|
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "gofireflyio";
|
|
|
|
repo = pname;
|
|
|
|
rev = "v${version}";
|
2024-06-12 00:41:33 +00:00
|
|
|
hash = "sha256-6u/TVCLFtcNzmchYw8dhedNRm7Lpl9oi8MpYkLYzFdg=";
|
2023-04-20 09:31:54 +00:00
|
|
|
};
|
|
|
|
|
2023-12-27 00:19:01 +00:00
|
|
|
vendorHash = "sha256-JWQQUB4/yIDGzWeshtcWnkXQS7jYcDHwG/tef6sBizQ=";
|
|
|
|
ldflags = [ "-s" "-w" "-X github.com/gofireflyio/aiac/v4/libaiac.Version=v${version}" ];
|
2023-04-20 09:31:54 +00:00
|
|
|
|
|
|
|
meta = with lib; {
|
|
|
|
description = ''Artificial Intelligence Infrastructure-as-Code Generator.'';
|
2024-03-19 02:14:51 +00:00
|
|
|
mainProgram = "aiac";
|
2023-04-20 09:31:54 +00:00
|
|
|
homepage = "https://github.com/gofireflyio/aiac/";
|
|
|
|
license = licenses.asl20;
|
|
|
|
maintainers = with maintainers; [ qjoly ];
|
|
|
|
};
|
|
|
|
}
|