mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-23 23:43:30 +00:00
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:
parent
00a40e2cf4
commit
69bc0b64ab
@ -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;
|
||||
|
@ -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
|
||||
];
|
||||
|
||||
|
@ -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 { };
|
||||
|
Loading…
Reference in New Issue
Block a user