summaryrefslogtreecommitdiffstats
path: root/pkgs/development
diff options
context:
space:
mode:
authorSandro <sandro.jaeckel@gmail.com>2022-05-25 21:06:57 +0200
committerGitHub <noreply@github.com>2022-05-25 21:06:57 +0200
commit97193fceb9a84bfa469dc06e2ccbe1e0726e52ec (patch)
tree370598b61cc248deb511d10099da6ed857db6ace /pkgs/development
parent4904243100b0319b00bbf5038daf8557f19b090a (diff)
parentdcf4c8e7b947b23355590bde46cb605428d68490 (diff)
Merge pull request #169312 from 06kellyjac/apko
apko: init at 0.3.3
Diffstat (limited to 'pkgs/development')
-rw-r--r--pkgs/development/tools/apko/default.nix72
1 files changed, 72 insertions, 0 deletions
diff --git a/pkgs/development/tools/apko/default.nix b/pkgs/development/tools/apko/default.nix
new file mode 100644
index 000000000000..05342e7714e9
--- /dev/null
+++ b/pkgs/development/tools/apko/default.nix
@@ -0,0 +1,72 @@
+{ lib
+, buildGoModule
+, fetchFromGitHub
+, installShellFiles
+}:
+
+buildGoModule rec {
+ pname = "apko";
+ version = "0.3.3";
+
+ src = fetchFromGitHub {
+ owner = "chainguard-dev";
+ repo = pname;
+ rev = "v${version}";
+ sha256 = "sha256-j/tfa9O10HSEwzuXE2mjV2TVYuwk9lpA0PgsKDm70uI=";
+ # 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
+ '';
+ };
+ vendorSha256 = "sha256-jsNSYlTXUAUPG7vccjmonZUN1HAmULprCmJ1TYLYP00=";
+
+ nativeBuildInputs = [ installShellFiles ];
+
+ ldflags = [
+ "-s"
+ "-w"
+ "-X sigs.k8s.io/release-utils/version.gitVersion=v${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)"
+ '';
+
+ preCheck = ''
+ # requires network access to fetch alpine linux keyring
+ substituteInPlace pkg/apk/apk_unit_test.go \
+ --replace "TestInitKeyring" "SkipInitKeyring"
+ '';
+
+ postInstall = ''
+ installShellCompletion --cmd apko \
+ --bash <($out/bin/apko completion bash) \
+ --fish <($out/bin/apko completion fish) \
+ --zsh <($out/bin/apko completion zsh)
+ '';
+
+ doInstallCheck = true;
+ installCheckPhase = ''
+ runHook preInstallCheck
+ $out/bin/apko --help
+ $out/bin/apko version 2>&1 | grep "v${version}"
+ runHook postInstallCheck
+ '';
+
+ meta = with lib; {
+ homepage = "https://apko.dev/";
+ changelog = "https://github.com/chainguard-dev/apko/blob/main/NEWS.md";
+ description = "Build OCI images using APK directly without Dockerfile";
+ license = licenses.asl20;
+ maintainers = with maintainers; [ jk ];
+ };
+}