Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
99 lines
2.8 KiB
Nix
99 lines
2.8 KiB
Nix
{
|
|
lib,
|
|
stdenv,
|
|
buildGoModule,
|
|
fetchFromGitHub,
|
|
writableTmpDirAsHomeHook,
|
|
installShellFiles,
|
|
versionCheckHook,
|
|
buildPackages,
|
|
}:
|
|
|
|
buildGoModule (finalAttrs: {
|
|
pname = "apko";
|
|
version = "0.30.13";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "chainguard-dev";
|
|
repo = "apko";
|
|
tag = "v${finalAttrs.version}";
|
|
hash = "sha256-b90o1MmFYhEc8mwh7ejTm6I59zlaa8Jv46dtuZdC6GQ=";
|
|
# populate values that require us to use git. By doing this in postFetch we
|
|
# can delete .git afterwards and maintain better reproducibility of the src.
|
|
leaveDotGit = true;
|
|
postFetch = ''
|
|
cd "$out"
|
|
git rev-parse HEAD > $out/COMMIT
|
|
# '0000-00-00T00:00:00Z'
|
|
date -u -d "@$(git log -1 --pretty=%ct)" "+'%Y-%m-%dT%H:%M:%SZ'" > $out/SOURCE_DATE_EPOCH
|
|
find "$out" -name .git -print0 | xargs -0 rm -rf
|
|
'';
|
|
};
|
|
vendorHash = "sha256-mZg8OXPMeBAJYQWB0vrZC5fo0+xuU8ho/IE2j624RV8=";
|
|
|
|
nativeBuildInputs = [ installShellFiles ];
|
|
|
|
ldflags = [
|
|
"-s"
|
|
"-w"
|
|
"-X sigs.k8s.io/release-utils/version.gitVersion=v${finalAttrs.version}"
|
|
"-X sigs.k8s.io/release-utils/version.gitTreeState=clean"
|
|
];
|
|
|
|
# ldflags based on metadata from git and source
|
|
preBuild = ''
|
|
ldflags+=" -X sigs.k8s.io/release-utils/version.gitCommit=$(cat COMMIT)"
|
|
ldflags+=" -X sigs.k8s.io/release-utils/version.buildDate=$(cat SOURCE_DATE_EPOCH)"
|
|
'';
|
|
|
|
nativeCheckInputs = [ writableTmpDirAsHomeHook ];
|
|
|
|
# skip tests on darwin due to some local networking failures
|
|
# `__darwinAllowLocalNetworking = true;` wasn't sufficient for
|
|
# aarch64 or x86_64
|
|
doCheck = !stdenv.isDarwin;
|
|
preCheck = ''
|
|
# some test data include SOURCE_DATE_EPOCH (which is different from our default)
|
|
# and the default version info which we get by unsetting our ldflags
|
|
export SOURCE_DATE_EPOCH=0
|
|
unset ldflags
|
|
'';
|
|
|
|
checkFlags = [
|
|
# requires networking (apk.chainreg.biz)
|
|
"-skip=TestInitDB_ChainguardDiscovery"
|
|
];
|
|
|
|
postInstall =
|
|
let
|
|
apko =
|
|
if stdenv.buildPlatform.canExecute stdenv.hostPlatform then
|
|
placeholder "out"
|
|
else
|
|
buildPackages.apko;
|
|
in
|
|
''
|
|
installShellCompletion --cmd apko \
|
|
--bash <(${apko}/bin/apko completion bash) \
|
|
--fish <(${apko}/bin/apko completion fish) \
|
|
--zsh <(${apko}/bin/apko completion zsh)
|
|
'';
|
|
|
|
nativeInstallCheckInputs = [ versionCheckHook ];
|
|
doInstallCheck = true;
|
|
versionCheckProgramArg = "version";
|
|
|
|
meta = {
|
|
homepage = "https://apko.dev/";
|
|
changelog = "https://github.com/chainguard-dev/apko/releases/tag/v${finalAttrs.version}";
|
|
description = "Build OCI images using APK directly without Dockerfile";
|
|
mainProgram = "apko";
|
|
license = lib.licenses.asl20;
|
|
maintainers = with lib.maintainers; [
|
|
jk
|
|
developer-guy
|
|
emilylange
|
|
];
|
|
};
|
|
})
|