mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-19 12:11:28 +00:00
fission: init at 1.12.0
This commit is contained in:
parent
e571bd374a
commit
1b0385825b
30
pkgs/development/tools/fission/default.nix
Normal file
30
pkgs/development/tools/fission/default.nix
Normal 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 ];
|
||||
};
|
||||
}
|
|
@ -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 { };
|
||||
|
|
Loading…
Reference in a new issue