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
70 lines
1.2 KiB
Nix
70 lines
1.2 KiB
Nix
{
|
|
lib,
|
|
stdenv,
|
|
fetchFromGitHub,
|
|
autoreconfHook,
|
|
libuv,
|
|
lz4,
|
|
pkg-config,
|
|
incus,
|
|
gitUpdater,
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "raft-cowsql";
|
|
version = "0.22.1";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "cowsql";
|
|
repo = "raft";
|
|
tag = "v${version}";
|
|
hash = "sha256-aGw/ATu8Xdjfqa0qWg8Sld9PKCmQsMtZhuNBwagER7M=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
autoreconfHook
|
|
pkg-config
|
|
];
|
|
buildInputs = [
|
|
libuv
|
|
lz4
|
|
];
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
patches = [
|
|
# network tests either hang indefinitely, or fail outright
|
|
./disable-net-tests.patch
|
|
|
|
# missing dir check is flaky
|
|
./disable-missing-dir-test.patch
|
|
];
|
|
|
|
preConfigure = ''
|
|
substituteInPlace configure --replace /usr/bin/ " "
|
|
'';
|
|
|
|
doCheck = true;
|
|
|
|
outputs = [
|
|
"dev"
|
|
"out"
|
|
];
|
|
|
|
passthru = {
|
|
inherit (incus) tests;
|
|
|
|
updateScript = gitUpdater {
|
|
rev-prefix = "v";
|
|
};
|
|
};
|
|
|
|
meta = with lib; {
|
|
description = "Asynchronous C implementation of the Raft consensus protocol";
|
|
homepage = "https://github.com/cowsql/raft";
|
|
license = licenses.lgpl3Only;
|
|
platforms = platforms.linux;
|
|
teams = [ teams.lxc ];
|
|
};
|
|
}
|