Merge pull request #48818 from jokogr/u/lxd-3.0.2

lxd: 3.0.0 -> 3.0.2
This commit is contained in:
Jörg Thalheim
2018-10-22 21:07:52 +01:00
committed by GitHub
3 changed files with 57 additions and 4 deletions

View File

@@ -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;
};
}