tgpt: init at 1.6.11

This commit is contained in:
Fabian Affolter 2023-06-25 22:27:33 +02:00 committed by Anderson Torres
parent cbe6b9ecc9
commit bc09bf0ccf
2 changed files with 33 additions and 0 deletions

View File

@ -0,0 +1,31 @@
{ lib
, buildGoModule
, fetchFromGitHub
}:
buildGoModule rec {
pname = "tgpt";
version = "1.6.11";
src = fetchFromGitHub {
owner = "aandrew-me";
repo = "tgpt";
rev = "refs/tags/v${version}";
hash = "sha256-WcHPryzdFFS8eXaLPtwRd3xZwZ/x+MfwsA8wO2tRSYI=";
};
vendorHash = "sha256-2I5JJWxM6aZx0eZu7taUTL11Y/5HIrXYC5aezrTbbsM=";
ldflags = [
"-s"
"-w"
];
meta = with lib; {
description = "ChatGPT in terminal without needing API keys";
homepage = "https://github.com/aandrew-me/tgpt";
changelog = "https://github.com/aandrew-me/tgpt/releases/tag/v${version}";
license = licenses.gpl3Only;
maintainers = with maintainers; [ fab ];
};
}

View File

@ -27307,6 +27307,8 @@ with pkgs;
smemstat = callPackage ../os-specific/linux/smemstat { };
tgpt = callPackage ../tools/misc/tgpt { };
tgt = callPackage ../tools/networking/tgt { };
lkl = callPackage ../applications/virtualization/lkl { };