2023-04-20 09:31:54 +00:00
|
|
|
{ lib, buildGoModule, fetchFromGitHub }:
|
|
|
|
|
|
|
|
buildGoModule rec {
|
|
|
|
pname = "aiac";
|
2024-10-30 01:48:00 +00:00
|
|
|
version = "5.3.0";
|
2023-04-20 09:31:54 +00:00
|
|
|
excludedPackages = [".ci"];
|
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "gofireflyio";
|
|
|
|
repo = pname;
|
|
|
|
rev = "v${version}";
|
2024-10-30 01:48:00 +00:00
|
|
|
hash = "sha256-Lk3Bmzg1owkIWzz7jgq1YpdPyRzyZ7aNoWPIU5aWzu0=";
|
2023-04-20 09:31:54 +00:00
|
|
|
};
|
|
|
|
|
2024-06-27 00:57:35 +00:00
|
|
|
vendorHash = "sha256-uXYin6JITpy3bc7FI/3aJqvCD9cGwGL1qjB8hBUWLQE=";
|
2023-12-27 00:19:01 +00:00
|
|
|
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 ];
|
|
|
|
};
|
|
|
|
}
|