wandio: init at 4.2.6

+42
+42
pkgs/by-name/wa/wandio/package.nix
···
··· 1 + { 2 + lib, 3 + stdenv, 4 + fetchFromGitHub, 5 + autoreconfHook, 6 + zlib, 7 + bzip2, 8 + xz, 9 + nix-update-script, 10 + }: 11 + 12 + stdenv.mkDerivation (finalAttrs: { 13 + pname = "wandio"; 14 + version = "4.2.6-1"; 15 + 16 + src = fetchFromGitHub { 17 + owner = "LibtraceTeam"; 18 + repo = "wandio"; 19 + tag = finalAttrs.version; 20 + hash = "sha256-fYSAmuTgik8YeonHQc+GHRQ1lEuWxlE17npVsMpBlOE="; 21 + }; 22 + 23 + strictDeps = true; 24 + 25 + nativeBuildInputs = [ autoreconfHook ]; 26 + buildInputs = [ 27 + zlib 28 + bzip2 29 + xz 30 + ]; 31 + 32 + passthru.updateScript = nix-update-script { extraArgs = [ "--version-regex=^([0-9.-]+)$" ]; }; 33 + 34 + meta = { 35 + description = "C library for simple and efficient file IO"; 36 + homepage = "https://github.com/LibtraceTeam/wandio"; 37 + changelog = "https://github.com/LibtraceTeam/wandio/releases/tag/${finalAttrs.version}"; 38 + license = lib.licenses.lgpl3Only; 39 + maintainers = with lib.maintainers; [ felbinger ]; 40 + platforms = lib.platforms.unix; 41 + }; 42 + })