mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-03 12:23:02 +00:00
46 lines
1022 B
Nix
46 lines
1022 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;
|
||
|
};
|
||
|
})
|