From 3a05cdb018fddb6104a386ef497ecc24800d8a07 Mon Sep 17 00:00:00 2001 From: Robert Rose Date: Tue, 27 May 2025 20:08:38 +0200 Subject: [PATCH 1/2] zeekstd: 0.2.3 -> 0.3.0 Changelog: https://github.com/rorosen/zeekstd/releases/tag/v0.3.0-cli --- pkgs/by-name/ze/zeekstd/package.nix | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/pkgs/by-name/ze/zeekstd/package.nix b/pkgs/by-name/ze/zeekstd/package.nix index 424954b4823c..a8268c29120e 100644 --- a/pkgs/by-name/ze/zeekstd/package.nix +++ b/pkgs/by-name/ze/zeekstd/package.nix @@ -5,22 +5,22 @@ }: rustPlatform.buildRustPackage (finalAttrs: { pname = "zeekstd"; - version = "0.2.3"; + version = "0.3.0"; src = fetchFromGitHub { owner = "rorosen"; repo = "zeekstd"; - tag = "v${finalAttrs.version}"; - hash = "sha256-URQ8UiCy8qnm0VM55BqPgIthR4AIyRk+fgowAFxvXwM="; + tag = "v${finalAttrs.version}-cli"; + hash = "sha256-9sUo3RptvCtxmtV49+X09TrOH2t+zB/PCYmeYLWNeGU="; }; useFetchCargoVendor = true; - cargoHash = "sha256-lS4RQuwvY6bRpsev7RI3XWBPbrdek5im/rkzP+Cmgpc="; + cargoHash = "sha256-ggEXjfv4PxVfD7poeFXeACMIMh0A7ar2sm2epY5TO1Y="; meta = { description = "CLI tool that works with the zstd seekable format"; homepage = "https://github.com/rorosen/zeekstd"; - changelog = "https://github.com/rorosen/zeekstd/releases/tag/v${finalAttrs.version}"; + changelog = "https://github.com/rorosen/zeekstd/releases/tag/v${finalAttrs.version}-cli"; license = lib.licenses.bsd2; maintainers = [ lib.maintainers.rorosen ]; mainProgram = "zeekstd"; From 0134a1d44213d5df00e53d418630b52c65a6b325 Mon Sep 17 00:00:00 2001 From: Robert Rose Date: Thu, 29 May 2025 19:27:22 +0200 Subject: [PATCH 2/2] nixos/repart: update zeekstd command --- nixos/modules/image/repart-image.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nixos/modules/image/repart-image.nix b/nixos/modules/image/repart-image.nix index 186edd05ede9..e62db75caf8f 100644 --- a/nixos/modules/image/repart-image.nix +++ b/nixos/modules/image/repart-image.nix @@ -126,7 +126,7 @@ let "zstd" = "zstd --no-progress --threads=$NIX_BUILD_CORES -${toString compression.level}"; "xz" = "xz --keep --verbose --threads=$NIX_BUILD_CORES -${toString compression.level}"; "zstd-seekable" = - "zeekstd --quiet --max-frame-size 2M --compression-level ${toString compression.level}"; + "zeekstd --no-progress --frame-size 2M --compression-level ${toString compression.level}"; } ."${compression.algorithm}"; in