nixpkgs-suyu/pkgs/tools/admin/stripe-cli/default.nix

27 lines
612 B
Nix
Raw Normal View History

{ lib, buildGoModule, fetchFromGitHub }:
2020-10-17 17:35:58 +02:00
buildGoModule rec {
pname = "stripe-cli";
2021-10-28 22:52:40 +02:00
version = "1.7.4";
2020-10-17 17:35:58 +02:00
src = fetchFromGitHub {
owner = "stripe";
repo = pname;
rev = "v${version}";
2021-10-28 22:52:40 +02:00
sha256 = "sha256-2wiry3bBrxrhyyPT/81VpAS34XBZgZsz8Wlq8Qeybgk=";
2020-10-17 17:35:58 +02:00
};
2021-10-28 22:52:40 +02:00
vendorSha256 = "sha256-Lgd1vGXlZw0s4dVC0TlGEYoGOLrJPc/bZ75Mzke4rrg=";
2020-10-17 17:35:58 +02:00
subPackages = [
"cmd/stripe"
];
meta = with lib; {
2020-10-17 17:35:58 +02:00
homepage = "https://stripe.com/docs/stripe-cli";
description = "A command-line tool for Stripe";
license = with licenses; [ asl20 ];
maintainers = with maintainers; [ RaghavSood ];
};
}