sqitchSqlite: init at 1.5.0

This commit is contained in:
SEKUN
2025-02-09 19:50:33 +08:00
parent 6ad36c125e
commit 62313ff35f
2 changed files with 6 additions and 0 deletions
@@ -6,6 +6,7 @@
shortenPerlShebang,
mysqlSupport ? false,
postgresqlSupport ? false,
sqliteSupport ? false,
templateToolkitSupport ? false,
}:
@@ -16,6 +17,7 @@ let
[ AlgorithmBackoff ]
++ lib.optional mysqlSupport DBDmysql
++ lib.optional postgresqlSupport DBDPg
++ lib.optional sqliteSupport DBDSQLite
++ lib.optional templateToolkitSupport TemplateToolkit;
in
+4
View File
@@ -11097,6 +11097,10 @@ with pkgs;
postgresqlSupport = true;
}).overrideAttrs { pname = "sqitch-pg"; };
sqitchSqlite = (callPackage ../development/tools/misc/sqitch {
sqliteSupport = true;
}).overrideAttrs { pname = "sqitch-sqlite"; };
### DEVELOPMENT / R MODULES
R = darwin.apple_sdk_11_0.callPackage ../applications/science/math/R {