nixpkgs/pkgs/by-name/ra/raft-cowsql/package.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

60 lines
1.1 KiB
Nix
Raw Normal View History

2023-08-29 16:42:00 +02:00
{ lib
, stdenv
, fetchFromGitHub
, autoreconfHook
, libuv
, lz4
, pkg-config
, incus
, gitUpdater
}:
stdenv.mkDerivation rec {
pname = "raft-cowsql";
2024-02-11 16:52:21 +01:00
version = "0.22.0";
2023-08-29 16:42:00 +02:00
src = fetchFromGitHub {
owner = "cowsql";
repo = "raft";
rev = "refs/tags/v${version}";
2024-02-11 16:52:21 +01:00
hash = "sha256-kd0PD45+CenlfRMp5O48uELyZ2gEtasCe7xNEzsKU+M=";
2023-08-29 16:42:00 +02:00
};
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" ];
2023-10-20 06:10:59 +02:00
passthru = {
inherit (incus) tests;
updateScript = gitUpdater {
rev-prefix = "v";
};
2023-08-29 16:42:00 +02:00
};
meta = with lib; {
description = "Asynchronous C implementation of the Raft consensus protocol";
homepage = "https://github.com/cowsql/raft";
license = licenses.lgpl3Only;
platforms = platforms.linux;
maintainers = teams.lxc.members;
2023-08-29 16:42:00 +02:00
};
}