summary refs log tree commit diff
path: root/pkgs/development/libraries
diff options
context:
space:
mode:
authorJörg Thalheim <Mic92@users.noreply.github.com>2018-10-22 21:07:52 +0100
committerGitHub <noreply@github.com>2018-10-22 21:07:52 +0100
commit0a9bfd69ec6a3fc16182c1e720e79f20b70806fc (patch)
treee10fc48ff02da2d662bac4f3de81fc50766371fc /pkgs/development/libraries
parent9de8d713dd54a6f313d84ce09862785470295b5c (diff)
parentab62fe910883dd6322dc75190cb86ea9a185ebd3 (diff)
downloadnixlib-0a9bfd69ec6a3fc16182c1e720e79f20b70806fc.tar
nixlib-0a9bfd69ec6a3fc16182c1e720e79f20b70806fc.tar.gz
nixlib-0a9bfd69ec6a3fc16182c1e720e79f20b70806fc.tar.bz2
nixlib-0a9bfd69ec6a3fc16182c1e720e79f20b70806fc.tar.lz
nixlib-0a9bfd69ec6a3fc16182c1e720e79f20b70806fc.tar.xz
nixlib-0a9bfd69ec6a3fc16182c1e720e79f20b70806fc.tar.zst
nixlib-0a9bfd69ec6a3fc16182c1e720e79f20b70806fc.zip
Merge pull request #48818 from jokogr/u/lxd-3.0.2
lxd: 3.0.0 -> 3.0.2
Diffstat (limited to 'pkgs/development/libraries')
-rw-r--r--pkgs/development/libraries/dqlite/default.nix27
1 files changed, 27 insertions, 0 deletions
diff --git a/pkgs/development/libraries/dqlite/default.nix b/pkgs/development/libraries/dqlite/default.nix
new file mode 100644
index 000000000000..8cc7a0bba62e
--- /dev/null
+++ b/pkgs/development/libraries/dqlite/default.nix
@@ -0,0 +1,27 @@
+{ stdenv, fetchFromGitHub, autoreconfHook, pkgconfig, libuv, sqlite-replication }:
+
+with stdenv.lib;
+
+stdenv.mkDerivation rec {
+  name = "dqlite-${version}";
+  version = "0.2.4";
+
+  src = fetchFromGitHub {
+    owner = "CanonicalLtd";
+    repo = "dqlite";
+    rev = "v${version}";
+    sha256 = "03dikhjppraagyvjx4zbp7f5jfg74jivighxkwrbzrcy0g8pmcvd";
+  };
+
+  nativeBuildInputs = [ autoreconfHook pkgconfig ];
+
+  buildInputs = [ libuv sqlite-replication ];
+
+  meta = {
+    description = "Expose a SQLite database over the network and replicate it across a cluster of peers";
+    homepage = https://github.com/CanonicalLtd/dqlite/;
+    license = licenses.asl20;
+    maintainers = with maintainers; [ joko ];
+    platforms = platforms.unix;
+  };
+}