wandio: init at 4.2.6

This commit is contained in:
Nico Felbinger
2025-06-13 18:18:10 +02:00
parent f811655d3c
commit aa60bfcd16
+42
View File
@@ -0,0 +1,42 @@
{
lib,
stdenv,
fetchFromGitHub,
autoreconfHook,
zlib,
bzip2,
xz,
nix-update-script,
}:
stdenv.mkDerivation (finalAttrs: {
pname = "wandio";
version = "4.2.6-1";
src = fetchFromGitHub {
owner = "LibtraceTeam";
repo = "wandio";
tag = finalAttrs.version;
hash = "sha256-fYSAmuTgik8YeonHQc+GHRQ1lEuWxlE17npVsMpBlOE=";
};
strictDeps = true;
nativeBuildInputs = [ autoreconfHook ];
buildInputs = [
zlib
bzip2
xz
];
passthru.updateScript = nix-update-script { extraArgs = [ "--version-regex=^([0-9.-]+)$" ]; };
meta = {
description = "C library for simple and efficient file IO";
homepage = "https://github.com/LibtraceTeam/wandio";
changelog = "https://github.com/LibtraceTeam/wandio/releases/tag/${finalAttrs.version}";
license = lib.licenses.lgpl3Only;
maintainers = with lib.maintainers; [ felbinger ];
platforms = lib.platforms.unix;
};
})