mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 06:45:16 +01:00
45 lines
1 KiB
Nix
45 lines
1 KiB
Nix
{ lib
|
|
, curl
|
|
, fetchFromGitHub
|
|
, jq
|
|
, makeBinaryWrapper
|
|
, please-cli
|
|
, stdenv
|
|
, testers
|
|
}:
|
|
|
|
stdenv.mkDerivation (finalAttrs: {
|
|
pname = "please-cli";
|
|
version = "0.3.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "TNG";
|
|
repo = "please-cli";
|
|
rev = "v${finalAttrs.version}";
|
|
hash = "sha256-rJIR4eMhXL4K9iO7JxnkgWNsICV3hPQb0aobWNuHAG0=";
|
|
};
|
|
|
|
nativeBuildInputs = [ makeBinaryWrapper ];
|
|
|
|
installPhase = ''
|
|
runHook preInstall
|
|
install -Dm555 please.sh "$out/bin/please"
|
|
wrapProgram $out/bin/please \
|
|
--prefix PATH : ${lib.makeBinPath [ curl jq ]}
|
|
runHook postInstall
|
|
'';
|
|
|
|
passthru.tests = testers.testVersion {
|
|
package = please-cli;
|
|
version = "v${finalAttrs.version}";
|
|
};
|
|
|
|
meta = with lib; {
|
|
description = "An AI helper script to create CLI commands based on GPT prompts";
|
|
homepage = "https://github.com/TNG/please-cli";
|
|
license = licenses.asl20;
|
|
maintainers = with maintainers; [ _8-bit-fox ];
|
|
mainProgram = "please";
|
|
platforms = platforms.all;
|
|
};
|
|
})
|