remove unused package

This commit is contained in:
Frost-Phoenix 2023-12-22 22:46:03 +01:00
parent 19a6fdbf13
commit 2a348b4529

View file

@ -1,34 +0,0 @@
{
lib,
rustPlatform,
fetchFromGitHub,
pkg-config,
openssl,
stdenv,
}:
rustPlatform.buildRustPackage rec {
pname = "aichat";
version = "0.8.0";
src = fetchFromGitHub {
owner = "sigoden";
repo = pname;
rev = "v${version}";
hash = "sha256-E/QslRDeifFHlHUELv9rYHjfCAB1yXXiXlWOyPNkfps=";
};
cargoHash = "sha256-7TTHBeZ68G6k5eHBL1zDGsYiTyx27fBbN7Rl9AiZTng=";
nativeBuildInputs = [
pkg-config
];
buildInputs = [
openssl
];
meta = with lib; {
description = "Using ChatGPT/GPT-3.5/GPT-4 in the terminal";
homepage = "https://github.com/sigoden/aichat";
};
}