Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
43 lines
934 B
Nix
43 lines
934 B
Nix
{
|
|
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;
|
|
};
|
|
})
|