Merge pull request #116148 from NeverBehave/pkg/fission
This commit is contained in:
commit
cf117712a8
|
@ -6791,6 +6791,12 @@
|
||||||
githubId = 1488603;
|
githubId = 1488603;
|
||||||
name = "François Espinet";
|
name = "François Espinet";
|
||||||
};
|
};
|
||||||
|
neverbehave = {
|
||||||
|
email = "i@never.pet";
|
||||||
|
github = "NeverBehave";
|
||||||
|
githubId = 17120571;
|
||||||
|
name = "Xinhao Luo";
|
||||||
|
};
|
||||||
nikitavoloboev = {
|
nikitavoloboev = {
|
||||||
email = "nikita.voloboev@gmail.com";
|
email = "nikita.voloboev@gmail.com";
|
||||||
github = "nikitavoloboev";
|
github = "nikitavoloboev";
|
||||||
|
|
|
@ -0,0 +1,30 @@
|
||||||
|
{ lib, fetchFromGitHub, buildGoModule }:
|
||||||
|
|
||||||
|
buildGoModule rec {
|
||||||
|
pname = "fission";
|
||||||
|
version = "1.12.0";
|
||||||
|
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "fission";
|
||||||
|
repo = "fission";
|
||||||
|
rev = version;
|
||||||
|
sha256 = "0izvkjd7ydcxhr6zmgrbfm3ybz2kf4p27099lr07gd4x7c6xxmqr";
|
||||||
|
};
|
||||||
|
|
||||||
|
vendorSha256 = "12clw0wy4lypf45imqnabj39yxqpi348csr4m5d0d1rksxgvwngq";
|
||||||
|
|
||||||
|
buildFlagsArray = "-ldflags=-s -w -X info.Version=${version}";
|
||||||
|
|
||||||
|
subPackages = [ "cmd/fission-cli" ];
|
||||||
|
|
||||||
|
postInstall = ''
|
||||||
|
ln -s $out/bin/fission-cli $out/bin/fission
|
||||||
|
'';
|
||||||
|
|
||||||
|
meta = with lib; {
|
||||||
|
description = "The cli used by end user to interact Fission";
|
||||||
|
homepage = "https://fission.io";
|
||||||
|
license = licenses.asl20;
|
||||||
|
maintainers = with maintainers; [ neverbehave ];
|
||||||
|
};
|
||||||
|
}
|
|
@ -158,6 +158,8 @@ in
|
||||||
|
|
||||||
fishnet = callPackage ../servers/fishnet { };
|
fishnet = callPackage ../servers/fishnet { };
|
||||||
|
|
||||||
|
fission = callPackage ../development/tools/fission { };
|
||||||
|
|
||||||
authy = callPackage ../applications/misc/authy { };
|
authy = callPackage ../applications/misc/authy { };
|
||||||
|
|
||||||
avro-tools = callPackage ../development/tools/avro-tools { };
|
avro-tools = callPackage ../development/tools/avro-tools { };
|
||||||
|
|
Loading…
Reference in New Issue