stripe-cli: init at 1.5.3

gstqt5
Raghav Sood 2020-10-17 23:35:58 +08:00
parent 5cc71ccd9c
commit 0e8198502f
No known key found for this signature in database
GPG Key ID: 947862F324C79D21
2 changed files with 28 additions and 0 deletions

View File

@ -0,0 +1,26 @@
{ stdenv, buildGoModule, fetchFromGitHub }:
buildGoModule rec {
pname = "stripe-cli";
version = "1.5.3";
src = fetchFromGitHub {
owner = "stripe";
repo = pname;
rev = "v${version}";
sha256 = "0anrn7dkxgbzilh45gyqrp2930bkg3g3diarb50qp0rlim302sgy";
};
vendorSha256 = "05cyn9cgmijj6dl075slwm5qc6fj6m5sm414wqm50xz2fjs0400r";
subPackages = [
"cmd/stripe"
];
meta = with stdenv.lib; {
homepage = "https://stripe.com/docs/stripe-cli";
description = "A command-line tool for Stripe";
license = with licenses; [ asl20 ];
maintainers = with maintainers; [ RaghavSood ];
};
}

View File

@ -2414,6 +2414,8 @@ in
string-machine = callPackage ../applications/audio/string-machine { };
stripe-cli = callPackage ../tools/admin/stripe-cli { };
bash-supergenpass = callPackage ../tools/security/bash-supergenpass { };
swappy = callPackage ../applications/misc/swappy { gtk = gtk3; };