55 lines
1,019 B
Nix
55 lines
1,019 B
Nix
{
|
|
lib,
|
|
stdenv,
|
|
fetchFromGitHub,
|
|
jq,
|
|
curl,
|
|
glow,
|
|
makeWrapper,
|
|
}:
|
|
|
|
let
|
|
pname = "chatgpt-shell-cli";
|
|
|
|
# no tags
|
|
version = "master";
|
|
in
|
|
stdenv.mkDerivation {
|
|
inherit pname version;
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "0xacx";
|
|
repo = "chatgpt-shell-cli";
|
|
rev = version;
|
|
hash = "sha256-hYLrUya4UCsIB1J/n+jp1jFRCEqnGFJOr3ATxm0zwdY=";
|
|
};
|
|
|
|
nativeBuildInputs = [ makeWrapper ];
|
|
|
|
installPhase = ''
|
|
runHook preInstall
|
|
|
|
mkdir -p $out/bin
|
|
install -Dm755 chatgpt.sh -t $out/bin
|
|
|
|
runHook postInstall
|
|
'';
|
|
|
|
postInstall = ''
|
|
wrapProgram $out/bin/chatgpt.sh \
|
|
--prefix PATH : ${
|
|
lib.makeBinPath [
|
|
jq
|
|
curl
|
|
glow
|
|
]
|
|
}
|
|
'';
|
|
|
|
meta = with lib; {
|
|
homepage = "https://github.com/0xacx/chatGPT-shell-cli";
|
|
description = "Simple shell script to use OpenAI's ChatGPT and DALL-E from the terminal. No Python or JS required.";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ jfvillablanca ];
|
|
};
|
|
}
|