sqlite-replication: drop

Dqlite and LXD haven't required this custom SQLite version since 2020 (it was last updated in 2019), and its GitHub repo no longer exists.
This commit is contained in:
Winter 2022-12-23 13:31:49 -05:00 committed by Maciej Krüger
parent 00a40e2cf4
commit 69bc0b64ab
No known key found for this signature in database
GPG Key ID: 0D948CE19CF49C5F
3 changed files with 4 additions and 25 deletions

View File

@ -1,5 +1,5 @@
{ lib, stdenv, fetchFromGitHub, autoreconfHook, pkg-config, file, libuv
, raft-canonical, sqlite-replication }:
, raft-canonical, sqlite }:
stdenv.mkDerivation rec {
pname = "dqlite";
@ -16,7 +16,7 @@ stdenv.mkDerivation rec {
buildInputs = [
libuv
raft-canonical.dev
sqlite-replication
sqlite
];
enableParallelBuilding = true;

View File

@ -19,7 +19,7 @@
, libcap
, dqlite
, raft-canonical
, sqlite-replication
, sqlite
, udev
, writeShellScriptBin
, apparmor-profiles
@ -58,7 +58,7 @@ buildGoModule rec {
libcap
dqlite.dev
raft-canonical.dev
sqlite-replication
sqlite
udev.dev
];

View File

@ -22898,27 +22898,6 @@ with pkgs;
sqlite-jdbc = callPackage ../servers/sql/sqlite/jdbc { };
sqlite-replication = sqlite.overrideAttrs (oldAttrs: rec {
name = "sqlite-${version}";
version = "3.27.2+replication3";
src = fetchFromGitHub {
owner = "CanonicalLtd";
repo = "sqlite";
rev = "version-${version}";
sha256 = "1aw1naa5y25ial251f74h039pgcz92p4b3994jvfzqpjlz06qwvw";
};
nativeBuildInputs = [ tcl ];
configureFlags = oldAttrs.configureFlags ++ [
"--enable-replication"
"--disable-amalgamation"
"--disable-tcl"
];
preConfigure = ''
echo "D 2019-03-09T15:45:46" > manifest
echo -n "8250984a368079bb1838d48d99f8c1a6282e00bc" > manifest.uuid
'';
});
dqlite = callPackage ../development/libraries/dqlite { };
sqlcipher = callPackage ../development/libraries/sqlcipher { };