flux-build: init at 3.0.10 (#440282)

This commit is contained in:
Michael Daniels
2026-07-25 15:39:03 +00:00
committed by GitHub
2 changed files with 39 additions and 0 deletions
+5
View File
@@ -18867,6 +18867,11 @@
githubId = 45770;
name = "Mitsuhiro Nakamura";
};
MNThomson = {
github = "MNThomson";
githubId = 73045936;
name = "Max Thomson";
};
moaxcp = {
email = "moaxcp@gmail.com";
github = "moaxcp";
+34
View File
@@ -0,0 +1,34 @@
{
lib,
buildGoModule,
fetchFromGitHub,
nix-update-script,
}:
buildGoModule (finalAttrs: {
pname = "flux-build";
version = "3.0.10";
__structuredAttrs = true;
src = fetchFromGitHub {
owner = "DoodleScheduling";
repo = "flux-build";
tag = "v${finalAttrs.version}";
hash = "sha256-ToQVm69XqJgRahunUXjNnIiieqSV8TzgFdtFJktz5/g=";
};
vendorHash = "sha256-kVi/VVVPTblDvCjvnsKxfqYELBahHmzTlW74ktdZC7k=";
passthru.updateScript = nix-update-script { };
meta = {
description = "Build and test kustomize overlays with Flux HelmRelease templating";
homepage = "https://github.com/DoodleScheduling/flux-build";
license = lib.licenses.asl20;
changelog = "https://github.com/DoodleScheduling/flux-build/releases/tag/v${finalAttrs.version}";
mainProgram = "flux-build";
maintainers = with lib.maintainers; [ MNThomson ];
platforms = lib.platforms.unix;
};
})