From efd36a73241fd3992ff160d1bb44d4fdd72f3c97 Mon Sep 17 00:00:00 2001 From: Georges Date: Wed, 26 Apr 2023 10:14:22 +0200 Subject: [PATCH] yai: init at 0.6.0 Co-authored-by: Sandro --- pkgs/tools/misc/yai/default.nix | 38 +++++++++++++++++++++++++++++++++ pkgs/top-level/all-packages.nix | 2 ++ 2 files changed, 40 insertions(+) create mode 100644 pkgs/tools/misc/yai/default.nix diff --git a/pkgs/tools/misc/yai/default.nix b/pkgs/tools/misc/yai/default.nix new file mode 100644 index 00000000000..6b99671fbe9 --- /dev/null +++ b/pkgs/tools/misc/yai/default.nix @@ -0,0 +1,38 @@ +{ lib +, buildGoModule +, fetchFromGitHub +}: +buildGoModule rec { + pname = "yai"; + version = "0.6.0"; + + src = fetchFromGitHub { + owner = "ekkinox"; + repo = pname; + rev = version; + sha256 = "sha256-MoblXLfptlIYJbXQTpbc8GBo2a3Zgxdvwra8IUEGiZs=="; + }; + + vendorSha256 = "sha256-+NhYK8FXd5B3GsGUPJOMM7Tt3GS1ZJ7LeApz38Xkwx8="; + + ldflags = [ + "-w -s" + "-X main.buildVersion=${version}" + ]; + + preCheck = '' + # analyzer_test.go needs a user + export USER=test + ''; + + meta = with lib; { + homepage = "https://github.com/ekkinox/yai"; + description = "Your AI powered terminal assistant"; + longDescription = '' + Yai (your AI) is an assistant for your terminal, using OpenAI ChatGPT to build and run commands for you. + You just need to describe them in your everyday language, it will take care or the rest. + ''; + license = licenses.mit; + maintainers = with maintainers; [ georgesalkhouri ]; + }; +} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 728e5837562..0c06fe9afbe 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -39619,6 +39619,8 @@ with pkgs; yadm = callPackage ../applications/version-management/yadm { }; + yai = callPackage ../tools/misc/yai { }; + yamale = with python3Packages; toPythonApplication yamale; yamdi = callPackage ../tools/video/yamdi { };