2020-01-25 01:07:53 +01:00
|
|
|
{ buildGoModule, go, lib, fetchFromGitHub, makeWrapper }:
|
|
|
|
|
|
|
|
buildGoModule rec {
|
|
|
|
pname = "operator-sdk";
|
2020-10-16 10:08:43 +02:00
|
|
|
version = "1.1.0";
|
2020-01-25 01:07:53 +01:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "operator-framework";
|
|
|
|
repo = pname;
|
|
|
|
rev = "v${version}";
|
2020-10-16 10:08:43 +02:00
|
|
|
sha256 = "11xlay3sk5nr9pfbqifcrfi5h81qnhs3hg5b75zgqysgr4d2m987";
|
2020-01-25 01:07:53 +01:00
|
|
|
};
|
|
|
|
|
2020-10-16 10:08:43 +02:00
|
|
|
vendorSha256 = "1bbj23rwghqfw9vsgj9i9zrxvl480adsmjg1zb06cdhh5j1hl0vy";
|
2020-01-25 01:07:53 +01:00
|
|
|
|
2020-08-04 02:26:27 +02:00
|
|
|
doCheck = false;
|
|
|
|
|
2020-01-25 01:07:53 +01:00
|
|
|
subPackages = [ "cmd/operator-sdk" ];
|
|
|
|
|
|
|
|
buildInputs = [ go makeWrapper ];
|
|
|
|
|
|
|
|
# operator-sdk uses the go compiler at runtime
|
|
|
|
allowGoReference = true;
|
|
|
|
postFixup = ''
|
|
|
|
wrapProgram $out/bin/operator-sdk --prefix PATH : ${lib.makeBinPath [ go ]}
|
|
|
|
'';
|
|
|
|
|
|
|
|
meta = with lib; {
|
2020-10-11 07:55:05 +02:00
|
|
|
description = "SDK for building Kubernetes applications. Provides high level APIs, useful abstractions, and project scaffolding";
|
2020-01-25 01:07:53 +01:00
|
|
|
homepage = "https://github.com/operator-framework/operator-sdk";
|
|
|
|
license = licenses.asl20;
|
|
|
|
maintainers = with maintainers; [ arnarg ];
|
|
|
|
platforms = platforms.linux ++ platforms.darwin;
|
|
|
|
};
|
|
|
|
}
|