zeekstd: 0.2.3 -> 0.3.0 (#411481)

authored by nikstur and committed by GitHub 8d2ca20c 1b3c106b

+6 -6
+1 -1
nixos/modules/image/repart-image.nix
··· 126 126 "zstd" = "zstd --no-progress --threads=$NIX_BUILD_CORES -${toString compression.level}"; 127 127 "xz" = "xz --keep --verbose --threads=$NIX_BUILD_CORES -${toString compression.level}"; 128 128 "zstd-seekable" = 129 - "zeekstd --quiet --max-frame-size 2M --compression-level ${toString compression.level}"; 129 + "zeekstd --no-progress --frame-size 2M --compression-level ${toString compression.level}"; 130 130 } 131 131 ."${compression.algorithm}"; 132 132 in
+5 -5
pkgs/by-name/ze/zeekstd/package.nix
··· 5 5 }: 6 6 rustPlatform.buildRustPackage (finalAttrs: { 7 7 pname = "zeekstd"; 8 - version = "0.2.3"; 8 + version = "0.3.0"; 9 9 10 10 src = fetchFromGitHub { 11 11 owner = "rorosen"; 12 12 repo = "zeekstd"; 13 - tag = "v${finalAttrs.version}"; 14 - hash = "sha256-URQ8UiCy8qnm0VM55BqPgIthR4AIyRk+fgowAFxvXwM="; 13 + tag = "v${finalAttrs.version}-cli"; 14 + hash = "sha256-9sUo3RptvCtxmtV49+X09TrOH2t+zB/PCYmeYLWNeGU="; 15 15 }; 16 16 17 17 useFetchCargoVendor = true; 18 - cargoHash = "sha256-lS4RQuwvY6bRpsev7RI3XWBPbrdek5im/rkzP+Cmgpc="; 18 + cargoHash = "sha256-ggEXjfv4PxVfD7poeFXeACMIMh0A7ar2sm2epY5TO1Y="; 19 19 20 20 meta = { 21 21 description = "CLI tool that works with the zstd seekable format"; 22 22 homepage = "https://github.com/rorosen/zeekstd"; 23 - changelog = "https://github.com/rorosen/zeekstd/releases/tag/v${finalAttrs.version}"; 23 + changelog = "https://github.com/rorosen/zeekstd/releases/tag/v${finalAttrs.version}-cli"; 24 24 license = lib.licenses.bsd2; 25 25 maintainers = [ lib.maintainers.rorosen ]; 26 26 mainProgram = "zeekstd";