nixpkgs/pkgs/development/libraries/dqlite/default.nix

41 lines
924 B
Nix
Raw Normal View History

2019-10-01 22:50:07 +02:00
{ stdenv, fetchFromGitHub, autoreconfHook, pkgconfig, file, libco-canonical
, libuv, raft-canonical, sqlite-replication }:
2018-10-21 11:04:34 +02:00
with stdenv.lib;
stdenv.mkDerivation rec {
pname = "dqlite";
2020-06-14 13:04:53 +02:00
version = "1.4.4";
2018-10-21 11:04:34 +02:00
src = fetchFromGitHub {
2019-10-01 22:50:07 +02:00
owner = "canonical";
repo = pname;
2018-10-21 11:04:34 +02:00
rev = "v${version}";
2020-06-14 13:04:53 +02:00
sha256 = "0wm7vkapjg8hdjm6bi48hwsf4w4ppgn3r655gqms5ssjxm50m15d";
2018-10-21 11:04:34 +02:00
};
2019-10-01 22:50:07 +02:00
nativeBuildInputs = [ autoreconfHook file pkgconfig ];
2020-04-27 09:14:48 +02:00
buildInputs = [
libco-canonical.dev
libuv
raft-canonical.dev
sqlite-replication
];
2020-06-14 13:04:53 +02:00
# tests fail
2020-04-27 09:14:48 +02:00
doCheck = false;
2019-10-01 22:50:07 +02:00
outputs = [ "dev" "out" ];
2018-10-21 11:04:34 +02:00
meta = {
2019-10-01 22:50:07 +02:00
description = ''
Expose a SQLite database over the network and replicate it across a
cluster of peers
'';
homepage = "https://github.com/CanonicalLtd/dqlite/";
2018-10-21 11:04:34 +02:00
license = licenses.asl20;
2020-01-04 01:48:32 +01:00
maintainers = with maintainers; [ joko wucke13 ];
platforms = platforms.linux;
2018-10-21 11:04:34 +02:00
};
}