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

41 lines
949 B
Nix
Raw Normal View History

2019-10-01 20:50:07 +00:00
{ stdenv, fetchFromGitHub, autoreconfHook, pkgconfig, file, libco-canonical
, libuv, raft-canonical, sqlite-replication }:
2018-10-21 09:04:34 +00:00
with stdenv.lib;
stdenv.mkDerivation rec {
pname = "dqlite";
2020-04-27 07:14:48 +00:00
version = "1.4.1";
2018-10-21 09:04:34 +00:00
src = fetchFromGitHub {
2019-10-01 20:50:07 +00:00
owner = "canonical";
repo = pname;
2018-10-21 09:04:34 +00:00
rev = "v${version}";
2020-04-27 07:14:48 +00:00
sha256 = "04h3wbfv6bkzzmcwaja33x2qkj3czn0p6fgbdgqd1xli8sx2c2k4";
2018-10-21 09:04:34 +00:00
};
2019-10-01 20:50:07 +00:00
nativeBuildInputs = [ autoreconfHook file pkgconfig ];
2020-04-27 07:14:48 +00:00
buildInputs = [
libco-canonical.dev
libuv
raft-canonical.dev
sqlite-replication
];
# tests hang for ever on x86_64-linux
doCheck = false;
2019-10-01 20:50:07 +00:00
outputs = [ "dev" "out" ];
2018-10-21 09:04:34 +00:00
meta = {
2019-10-01 20:50:07 +00: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 09:04:34 +00:00
license = licenses.asl20;
2020-01-04 00:48:32 +00:00
maintainers = with maintainers; [ joko wucke13 ];
platforms = platforms.linux;
2018-10-21 09:04:34 +00:00
};
}