From 29f8a52d9fa98dcb7ca9a633f4e57af23e77d3db Mon Sep 17 00:00:00 2001 From: QJoly Date: Thu, 20 Apr 2023 11:31:54 +0200 Subject: aiac: Init at 2.2.0 Remove doCheck=true; --- .../networking/cluster/aiac/default.nix | 24 ++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 pkgs/applications/networking/cluster/aiac/default.nix (limited to 'pkgs/applications/networking/cluster/aiac/default.nix') diff --git a/pkgs/applications/networking/cluster/aiac/default.nix b/pkgs/applications/networking/cluster/aiac/default.nix new file mode 100644 index 0000000000000..578eb0bca0d16 --- /dev/null +++ b/pkgs/applications/networking/cluster/aiac/default.nix @@ -0,0 +1,24 @@ +{ lib, buildGoModule, fetchFromGitHub }: + +buildGoModule rec { + pname = "aiac"; + version = "2.2.0"; + excludedPackages = [".ci"]; + + src = fetchFromGitHub { + owner = "gofireflyio"; + repo = pname; + rev = "v${version}"; + hash = "sha256-Ju2LoCDY4lQaiJ3OSkt01SaOqVLrDGiTAwxxRnbnz/0="; + }; + + vendorHash = "sha256-UaC3Ez/i+kPQGOJYtCRtaD2pn3kVZPTaoCcNG7LiFbY="; + ldflags = [ "-s" "-w" "-X github.com/gofireflyio/aiac/v3/libaiac.Version=v${version}" ]; + + meta = with lib; { + description = ''Artificial Intelligence Infrastructure-as-Code Generator.''; + homepage = "https://github.com/gofireflyio/aiac/"; + license = licenses.asl20; + maintainers = with maintainers; [ qjoly ]; + }; +} -- cgit 1.4.1