sqlite-replication: initialize at 3.24.0+replication3
This commit is contained in:
parent
119d539d72
commit
bf39304e53
@ -12308,6 +12308,27 @@ with pkgs;
|
|||||||
|
|
||||||
sqlite-jdbc = callPackage ../servers/sql/sqlite/jdbc { };
|
sqlite-jdbc = callPackage ../servers/sql/sqlite/jdbc { };
|
||||||
|
|
||||||
|
sqlite-replication = sqlite.overrideAttrs (oldAttrs: rec {
|
||||||
|
name = "sqlite-${version}";
|
||||||
|
version = "3.24.0+replication3";
|
||||||
|
src = pkgs.fetchFromGitHub {
|
||||||
|
owner = "CanonicalLtd";
|
||||||
|
repo = "sqlite";
|
||||||
|
rev = "version-${version}";
|
||||||
|
sha256 = "19557b7aick1pxk0gw013cf5jy42i7539qn1ziza8dzy16a6zs8b";
|
||||||
|
};
|
||||||
|
nativeBuildInputs = [ pkgs.tcl ];
|
||||||
|
configureFlags = oldAttrs.configureFlags ++ [
|
||||||
|
"--enable-replication"
|
||||||
|
"--disable-amalgamation"
|
||||||
|
"--disable-tcl"
|
||||||
|
];
|
||||||
|
preConfigure = ''
|
||||||
|
echo "D 2018-08-01T13:22:18" > manifest
|
||||||
|
echo -n "c94dbda1a570c1ab180e7694afd3cc7116268c06" > manifest.uuid
|
||||||
|
'';
|
||||||
|
});
|
||||||
|
|
||||||
sqlcipher = lowPrio (callPackage ../development/libraries/sqlcipher {
|
sqlcipher = lowPrio (callPackage ../development/libraries/sqlcipher {
|
||||||
readline = null;
|
readline = null;
|
||||||
ncurses = null;
|
ncurses = null;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user