Commit 5952d4bc authored by John Rinehart's avatar John Rinehart
Browse files

perlPackages.AppSqitch: add Template-Toolkit support

parent 24e6cc41
Loading
Loading
Loading
Loading
+3 −1
Original line number Diff line number Diff line
@@ -5,13 +5,15 @@
, shortenPerlShebang
, mysqlSupport ? false
, postgresqlSupport ? false
, templateToolkitSupport ? false
}:

let
  sqitch = perlPackages.AppSqitch;
  modules = with perlPackages; [ ]
    ++ lib.optional mysqlSupport DBDmysql
    ++ lib.optional postgresqlSupport DBDPg;
    ++ lib.optional postgresqlSupport DBDPg
    ++ lib.optional templateToolkitSupport TemplateToolkit;
in

stdenv.mkDerivation {