5458f54a83
Operator-sdk is a cli tool for scaffolding and building Kubernetes operators.
34 lines
1001 B
Nix
34 lines
1001 B
Nix
{ buildGoModule, go, lib, fetchFromGitHub, makeWrapper }:
|
|
|
|
buildGoModule rec {
|
|
pname = "operator-sdk";
|
|
version = "0.18.2";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "operator-framework";
|
|
repo = pname;
|
|
rev = "v${version}";
|
|
sha256 = "02vzxqbh4yw9yvr9cr43hyi0v4hzii4mdb8am41n5y71bcld73v8";
|
|
};
|
|
|
|
vendorSha256 = "0kdbpm6phdcw1rcjggrdvc8hgs3hjc81545qh8jv6zwipmn89i1p";
|
|
|
|
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; {
|
|
description = "SDK for building Kubernetes applications. Provides high level APIs, useful abstractions, and project scaffolding.";
|
|
homepage = "https://github.com/operator-framework/operator-sdk";
|
|
license = licenses.asl20;
|
|
maintainers = with maintainers; [ arnarg ];
|
|
platforms = platforms.linux ++ platforms.darwin;
|
|
};
|
|
}
|