Skip to content

Commit

Permalink
aliyun-fcli: init at 1.0.3
Browse files Browse the repository at this point in the history
  • Loading branch information
ornxka committed Oct 25, 2021
1 parent 0bc1d7b commit 9279722
Show file tree
Hide file tree
Showing 5 changed files with 703 additions and 0 deletions.
26 changes: 26 additions & 0 deletions pkgs/tools/admin/aliyun-fcli/default.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
{ stdenv, lib, buildGoPackage, fetchFromGitHub }:

buildGoPackage rec {
pname = "fcli";
version = "1.0.4";
goPackagePath = "github.com/aliyun/${pname}";

src = fetchFromGitHub {
rev = "v${version}";
owner = "aliyun";
repo = pname;
sha256 = "sha256:1v5la0yrpqlrsfj125wh61af8gs5m03djbfjk9k9qq14hfi956vr";
};

# see updatedeps.sh for how to generate this file
goDeps = ./deps.nix;

patches = [./uuiddep.patch];

meta = with lib; {
description = "Alibaba Cloud Function Compute command line tools.";
homepage = "https://github.com/aliyun/fcli";
license = licenses.asl20;
maintainers = with maintainers; [ ornxka ];
};
}
Loading

0 comments on commit 9279722

Please sign in to comment.