Skip to content

Commit e6108fc

Browse files
committed
fixup! tools: add some options and comments to shell.nix
add `withAmaro` param
1 parent 1c1ea21 commit e6108fc

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

shell.nix

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@
1212

1313
# Build options
1414
icu ? pkgs.icu,
15+
withAmaro ? true,
1516
withSQLite ? true,
1617
withSSL ? true,
1718
withTemporal ? false,
@@ -79,6 +80,7 @@ pkgs.mkShell {
7980
)
8081
]
8182
++ extraConfigFlags
83+
++ pkgs.lib.optional (!withAmaro) "--without-amaro"
8284
++ pkgs.lib.optional (!withSQLite) "--without-sqlite"
8385
++ pkgs.lib.optional (!withSSL) "--without-ssl"
8486
++ pkgs.lib.optional withTemporal "--v8-enable-temporal-support"

0 commit comments

Comments
 (0)