flux-build: init at 3.0.10
Co-authored-by: Michael Daniels <mdaniels5757@gmail.com>
This commit is contained in:
co-authored by
Michael Daniels
parent
add81a03c2
commit
95d4c6bc0b
@@ -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;
|
||||
};
|
||||
})
|
||||
Reference in New Issue
Block a user