about summary refs log tree commit diff stats
path: root/flake.nix
diff options
context:
space:
mode:
authorTheofilos Augoustis <theofilos.augoustis@gmail.com>2025-11-03 10:03:29 +0000
committerTheofilos Augoustis <theofilos.augoustis@gmail.com>2025-11-11 08:56:04 +0000
commit6d8b8a3f141fdb9de063bdd57efa9e0d660b12a8 (patch)
treea1f71b5dc72bd7cb82ccf049ab3e4cf0f9025ccf /flake.nix
parentbff3d0d6ab7c14926f428dadf1d63198230ba192 (diff)
downloadfocaccia-6d8b8a3f141fdb9de063bdd57efa9e0d660b12a8.tar.gz
focaccia-6d8b8a3f141fdb9de063bdd57efa9e0d660b12a8.zip
Add support for basic SQLite workloads ta/sqlite
Diffstat (limited to 'flake.nix')
-rw-r--r--flake.nix5
1 files changed, 5 insertions, 0 deletions
diff --git a/flake.nix b/flake.nix
index b560660..865d7d2 100644
--- a/flake.nix
+++ b/flake.nix
@@ -282,6 +282,10 @@
 		musl-minimal-redis-nocheck = musl-minimal-pkgs.pkgsStatic.redis.overrideAttrs (old: {
 			doCheck = false;
 		});
+
+		musl-minimal-sqlite-nocheck = musl-minimal-pkgs.pkgsStatic.sqlite.overrideAttrs (old: {
+			doCheck = false;
+		});
 	in rec {
 		# Default package just builds Focaccia
 		packages = rec {
@@ -437,6 +441,7 @@
 					musl-pkgs.gcc
 					musl-pkgs.pkg-config
 					musl-minimal-redis-nocheck
+					musl-minimal-sqlite-nocheck
 					musl-minimal-pkgs.pkgsStatic.gzip
 					musl-minimal-pkgs.pkgsStatic.file
 				];