fission: init at 1.12.0

This commit is contained in:
NeverBehave 2021-03-13 01:45:32 -05:00 committed by Sandro Jäckel
parent e571bd374a
commit 1b0385825b
No known key found for this signature in database
GPG key ID: 3AF5A43A3EECC2E5
2 changed files with 32 additions and 0 deletions

View file

@ -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 ];
};
}

View file

@ -158,6 +158,8 @@ in
fishnet = callPackage ../servers/fishnet { };
fission = callPackage ../development/tools/fission { };
authy = callPackage ../applications/misc/authy { };
avro-tools = callPackage ../development/tools/avro-tools { };