-
-
Notifications
You must be signed in to change notification settings - Fork 14.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
5 changed files
with
703 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 ]; | ||
}; | ||
} |
Oops, something went wrong.