43 lines
919 B
Nix
43 lines
919 B
Nix
{ lib, stdenv, fetchFromGitHub, autoreconfHook, pkg-config, file, libuv
|
|
, raft-canonical, sqlite, lxd-lts }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "dqlite";
|
|
version = "1.16.4";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "canonical";
|
|
repo = pname;
|
|
rev = "refs/tags/v${version}";
|
|
hash = "sha256-Q90wVqb6321+SWW5j52fb6mVRf25nExqgN/+s6OwoMk=";
|
|
};
|
|
|
|
nativeBuildInputs = [ autoreconfHook file pkg-config ];
|
|
buildInputs = [
|
|
libuv
|
|
raft-canonical.dev
|
|
sqlite
|
|
];
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
# tests fail
|
|
doCheck = false;
|
|
|
|
outputs = [ "dev" "out" ];
|
|
|
|
passthru.tests = {
|
|
inherit lxd-lts;
|
|
};
|
|
|
|
meta = with lib; {
|
|
description = ''
|
|
Expose a SQLite database over the network and replicate it across a
|
|
cluster of peers
|
|
'';
|
|
homepage = "https://dqlite.io/";
|
|
license = licenses.asl20;
|
|
maintainers = teams.lxc.members;
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|