From 8925b49673f2c05b1da0df0fd053eef6ce236872 Mon Sep 17 00:00:00 2001 From: "J.P. Zivalich" Date: Wed, 27 May 2026 15:17:03 +0200 Subject: [PATCH 1/2] maintainers: add jpz13 Assisted-by: Claude Code (Anthropic Claude Opus 4.7) Signed-off-by: J.P. Zivalich --- maintainers/maintainer-list.nix | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/maintainers/maintainer-list.nix b/maintainers/maintainer-list.nix index 3242041cde63..8db004c8e906 100644 --- a/maintainers/maintainer-list.nix +++ b/maintainers/maintainer-list.nix @@ -13479,6 +13479,12 @@ githubId = 5352661; name = "James Cleverley-Prance"; }; + jpz13 = { + email = "jp@pipekit.io"; + github = "JPZ13"; + githubId = 6625432; + name = "J.P. Zivalich"; + }; jqueiroz = { email = "nixos@johnjq.com"; github = "jqueiroz"; From dde9088ecd1092ef63e45f880165a428c761ffe3 Mon Sep 17 00:00:00 2001 From: "J.P. Zivalich" Date: Wed, 27 May 2026 15:19:09 +0200 Subject: [PATCH 2/2] pipekit: init at 6.65.5 Pipekit CLI distributed as prebuilt tarballs from https://github.com/pipekit/cli/releases. Proprietary binary; marked unfree with sourceProvenance = [ binaryNativeCode ] following the pattern used by slack, zoom-us, _1password-cli, and snyk. Supports x86_64-linux, aarch64-linux, x86_64-darwin, and aarch64-darwin. passthru.updateScript = nix-update-script { } so subsequent version bumps can be driven by nix-update. Assisted-by: Claude Code (Anthropic Claude Opus 4.7) Signed-off-by: J.P. Zivalich pipekit: init at 6.65.5 Pipekit CLI distributed as prebuilt tarballs from https://github.com/pipekit/cli/releases. Proprietary binary; marked unfree with sourceProvenance = [ binaryNativeCode ] following the pattern used by slack, zoom-us, _1password-cli, and snyk. Supports x86_64-linux and aarch64-linux. passthru.updateScript = nix-update-script { } so subsequent version bumps can be driven by nix-update. Assisted-by: Claude Code (Anthropic Claude Opus 4.7) Signed-off-by: J.P. Zivalich --- pkgs/by-name/pi/pipekit/package.nix | 62 +++++++++++++++++++++++++++++ 1 file changed, 62 insertions(+) create mode 100644 pkgs/by-name/pi/pipekit/package.nix diff --git a/pkgs/by-name/pi/pipekit/package.nix b/pkgs/by-name/pi/pipekit/package.nix new file mode 100644 index 000000000000..e8ed65f77828 --- /dev/null +++ b/pkgs/by-name/pi/pipekit/package.nix @@ -0,0 +1,62 @@ +{ + lib, + stdenvNoCC, + fetchurl, + nix-update-script, + versionCheckHook, +}: + +let + sources = { + "x86_64-linux" = { + suffix = "linux_amd64"; + hash = "sha256-3TTVSCZcsUVfNzC9hWn0OLytMAOxL39f5IlqCReCw7g="; + }; + "aarch64-linux" = { + suffix = "linux_arm64"; + hash = "sha256-pHygFgvMdyh8NQeGwZ1iNkaU1q+pcxvn5/CaoO/amIc="; + }; + }; + inherit (stdenvNoCC.hostPlatform) system; + source = sources.${system} or (throw "pipekit: no prebuilt binary for ${system}"); +in +stdenvNoCC.mkDerivation (finalAttrs: { + pname = "pipekit"; + version = "6.65.5"; + + __structuredAttrs = true; + strictDeps = true; + + src = fetchurl { + url = "https://github.com/pipekit/cli/releases/download/v${finalAttrs.version}/cli_${finalAttrs.version}_${source.suffix}.tar.gz"; + inherit (source) hash; + }; + + sourceRoot = "."; + + dontConfigure = true; + dontBuild = true; + + installPhase = '' + runHook preInstall + install -Dm755 pipekit -t $out/bin + runHook postInstall + ''; + + doInstallCheck = true; + nativeInstallCheckInputs = [ versionCheckHook ]; + versionCheckProgramArg = "version"; + + passthru.updateScript = nix-update-script { }; + + meta = { + description = "CLI for Pipekit. Observability, governance, and scale for Argo Workflows"; + homepage = "https://pipekit.io"; + changelog = "https://github.com/pipekit/cli/releases/tag/v${finalAttrs.version}"; + license = lib.licenses.unfree; + mainProgram = "pipekit"; + maintainers = with lib.maintainers; [ jpz13 ]; + platforms = builtins.attrNames sources; + sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ]; + }; +})