diff --git a/pkgs/aichat/default.nix b/pkgs/aichat/default.nix deleted file mode 100644 index 96efe52..0000000 --- a/pkgs/aichat/default.nix +++ /dev/null @@ -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"; - }; -}