From b7bd9f06e0bc976b48a4784108babdec4629411b Mon Sep 17 00:00:00 2001 From: matthewcroughan Date: Tue, 2 Jul 2024 15:02:05 +0100 Subject: [PATCH] scion: use mattn/go-sqlite3 instead of modernc.org/sqlite This may help with path database corruption issues during power outage. mattn/go-sqlite3 is a CGO wrapper for the official sqlite implementation, whereas modernc/sqlite is transpiled from C --- pkgs/by-name/sc/scion/package.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pkgs/by-name/sc/scion/package.nix b/pkgs/by-name/sc/scion/package.nix index 830f6deb232f..ab0516dd72ee 100644 --- a/pkgs/by-name/sc/scion/package.nix +++ b/pkgs/by-name/sc/scion/package.nix @@ -35,6 +35,8 @@ buildGoModule { doCheck = true; + tags = [ "sqlite_mattn" ]; + passthru.tests = { inherit (nixosTests) scion-freestanding-deployment; };