dqlite: initialize at 0.2.4
This commit is contained in:
parent
bf39304e53
commit
891277e6a9
27
pkgs/development/libraries/dqlite/default.nix
Normal file
27
pkgs/development/libraries/dqlite/default.nix
Normal 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;
|
||||||
|
};
|
||||||
|
}
|
@ -12329,6 +12329,8 @@ with pkgs;
|
|||||||
'';
|
'';
|
||||||
});
|
});
|
||||||
|
|
||||||
|
dqlite = callPackage ../development/libraries/dqlite { };
|
||||||
|
|
||||||
sqlcipher = lowPrio (callPackage ../development/libraries/sqlcipher {
|
sqlcipher = lowPrio (callPackage ../development/libraries/sqlcipher {
|
||||||
readline = null;
|
readline = null;
|
||||||
ncurses = null;
|
ncurses = null;
|
||||||
|
Loading…
Reference in New Issue
Block a user