2021-02-05 17:12:51 +00:00
|
|
|
{ lib, buildGoModule, fetchFromGitHub }:
|
2020-10-19 00:13:06 +00:00
|
|
|
|
|
|
|
buildGoModule rec {
|
|
|
|
pname = "stripe-cli";
|
2022-02-20 05:27:41 +00:00
|
|
|
version = "1.7.12";
|
2020-10-19 00:13:06 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "stripe";
|
|
|
|
repo = pname;
|
|
|
|
rev = "v${version}";
|
2022-02-20 05:27:41 +00:00
|
|
|
sha256 = "sha256-xDhLd1tCw+W3xXxBgHDKZtMZszXsNelv2dMygHNVq64=";
|
2020-10-19 00:13:06 +00:00
|
|
|
};
|
|
|
|
|
2022-02-10 20:34:41 +00:00
|
|
|
vendorSha256 = "sha256-AsEem/KuA+jxioG96Ofn0te93fyZ9sebPkLPA+LAUkk=";
|
2020-10-19 00:13:06 +00:00
|
|
|
|
|
|
|
subPackages = [
|
|
|
|
"cmd/stripe"
|
|
|
|
];
|
|
|
|
|
2021-01-15 22:18:51 +00:00
|
|
|
meta = with lib; {
|
2020-10-19 00:13:06 +00:00
|
|
|
homepage = "https://stripe.com/docs/stripe-cli";
|
|
|
|
description = "A command-line tool for Stripe";
|
|
|
|
license = with licenses; [ asl20 ];
|
|
|
|
maintainers = with maintainers; [ RaghavSood ];
|
|
|
|
};
|
|
|
|
}
|