My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/development/tools/operator-sdk/default.nix

36 lines
1.0 KiB

{ buildGoModule, go, lib, fetchFromGitHub, makeWrapper }:
buildGoModule rec {
pname = "operator-sdk";
version = "1.18.1";
src = fetchFromGitHub {
owner = "operator-framework";
repo = pname;
rev = "v${version}";
sha256 = "sha256-BusShYGgaUGwLMWr/EHS7kDUTnTJyHzWUztlaMJskAg=";
};
vendorSha256 = "sha256-VH2ALKSr+UFk26Y5/1yhLP//wc1t8f9O5dMg0RGz4ZM=";
doCheck = false;
subPackages = [ "cmd/operator-sdk" ];
nativeBuildInputs = [ makeWrapper ];
buildInputs = [ go ];
# 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;
};
}