2020-03-27 07:33:21 +00:00
|
|
|
{ buildGoModule, fetchFromGitHub, lib }:
|
2019-03-06 00:52:57 +00:00
|
|
|
|
2019-03-08 19:10:50 +00:00
|
|
|
buildGoModule rec {
|
2020-05-11 07:04:58 +01:00
|
|
|
pname = "jx";
|
2020-06-14 19:27:05 +01:00
|
|
|
version = "2.1.65";
|
2019-03-06 00:52:57 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "jenkins-x";
|
|
|
|
repo = "jx";
|
|
|
|
rev = "v${version}";
|
2020-06-14 19:27:05 +01:00
|
|
|
sha256 = "0zkp0z5qpqw44bjnl20xna7s251k7jsxccqnqkdqqrzmqjpkkwgx";
|
2019-03-06 00:52:57 +00:00
|
|
|
};
|
|
|
|
|
2020-06-14 19:27:05 +01:00
|
|
|
vendorSha256 = "0zi2n8fywzy87yfwcx7di74s8mx0468zmg6kwjln7mwhr6q23adf";
|
2019-03-08 19:10:50 +00:00
|
|
|
|
|
|
|
subPackages = [ "cmd/jx" ];
|
2019-03-06 00:52:57 +00:00
|
|
|
|
|
|
|
buildFlagsArray = ''
|
|
|
|
-ldflags=
|
2019-03-08 19:10:50 +00:00
|
|
|
-X github.com/jenkins-x/jx/pkg/version.Version=${version}
|
|
|
|
-X github.com/jenkins-x/jx/pkg/version.Revision=${version}
|
2019-03-06 00:52:57 +00:00
|
|
|
'';
|
|
|
|
|
2020-03-27 07:33:21 +00:00
|
|
|
meta = with lib; {
|
2019-03-06 00:52:57 +00:00
|
|
|
description = "JX is a command line tool for installing and using Jenkins X.";
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://jenkins-x.io";
|
2019-03-06 00:52:57 +00:00
|
|
|
longDescription = ''
|
|
|
|
Jenkins X provides automated CI+CD for Kubernetes with Preview
|
|
|
|
Environments on Pull Requests using Jenkins, Knative Build, Prow,
|
|
|
|
Skaffold and Helm.
|
|
|
|
'';
|
|
|
|
license = licenses.asl20 ;
|
|
|
|
maintainers = with maintainers; [ kalbasit ];
|
|
|
|
platforms = platforms.linux ++ platforms.darwin;
|
|
|
|
};
|
|
|
|
}
|