mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-15 14:26:33 +01:00
755b915a15
nix run nixpkgs#silver-searcher -- -G '\.nix$' -0l 'description.*"[Aa]n?' pkgs \ | xargs -0 nix run nixpkgs#gnused -- -i '' -Ee 's/(description.*")[Aa]n? (.)/\1\U\2/'
45 lines
1,022 B
Nix
45 lines
1,022 B
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 = "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;
|
|
};
|
|
})
|