From 3851d55e6d3d9f43fa3c01b922d49e76ba12ce18 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Robert=20Sch=C3=BCtz?= Date: Tue, 26 May 2026 14:27:02 -0700 Subject: [PATCH] fio: 3.41 -> 3.42 Diff: https://github.com/axboe/fio/compare/fio-3.41...fio-3.42 Changelog: https://github.com/axboe/fio/releases/tag/fio-3.42 --- pkgs/by-name/fi/fio/package.nix | 14 +++----------- 1 file changed, 3 insertions(+), 11 deletions(-) diff --git a/pkgs/by-name/fi/fio/package.nix b/pkgs/by-name/fi/fio/package.nix index 7ae6aa9b3592..162176add36b 100644 --- a/pkgs/by-name/fi/fio/package.nix +++ b/pkgs/by-name/fi/fio/package.nix @@ -2,7 +2,6 @@ lib, stdenv, fetchFromGitHub, - fetchpatch, makeWrapper, libaio, pkg-config, @@ -17,23 +16,15 @@ stdenv.mkDerivation (finalAttrs: { pname = "fio"; - version = "3.41"; + version = "3.42"; src = fetchFromGitHub { owner = "axboe"; repo = "fio"; tag = "fio-${finalAttrs.version}"; - hash = "sha256-m4JskjSc/KHjID+6j/hbhnGzehPxMxA3m2Iyn49bJDU="; + hash = "sha256-v2A2mY0Lvoje632761urfR7h1KHVcGnVDaKOMjexqis="; }; - patches = [ - # https://github.com/axboe/fio/pull/2029 - (fetchpatch { - url = "https://github.com/axboe/fio/commit/ccce76d2850d6e52da3d7986c950af068fbfe0fd.patch"; - hash = "sha256-0jN3q1vTiU6YkdXrcTAOzqRqgu8sW8AWO4KkANi0XKo="; - }) - ]; - buildInputs = [ cunit python3 @@ -89,6 +80,7 @@ stdenv.mkDerivation (finalAttrs: { ''; meta = { + changelog = "https://github.com/axboe/fio/releases/tag/${finalAttrs.src.tag}"; description = "Flexible IO Tester - an IO benchmark tool"; homepage = "https://git.kernel.dk/cgit/fio/"; license = lib.licenses.gpl2Plus;