Unverified Commit 62313ff3 authored by SEKUN's avatar SEKUN
Browse files

sqitchSqlite: init at 1.5.0

parent 6ad36c12
Loading
Loading
Loading
Loading
+2 −0
Original line number Diff line number Diff line
@@ -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 −0
Original line number Diff line number Diff line
@@ -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 {