We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
shell.nix
1 parent 1c1ea21 commit e6108fcCopy full SHA for e6108fc
shell.nix
@@ -12,6 +12,7 @@
12
13
# Build options
14
icu ? pkgs.icu,
15
+ withAmaro ? true,
16
withSQLite ? true,
17
withSSL ? true,
18
withTemporal ? false,
@@ -79,6 +80,7 @@ pkgs.mkShell {
79
80
)
81
]
82
++ extraConfigFlags
83
+ ++ pkgs.lib.optional (!withAmaro) "--without-amaro"
84
++ pkgs.lib.optional (!withSQLite) "--without-sqlite"
85
++ pkgs.lib.optional (!withSSL) "--without-ssl"
86
++ pkgs.lib.optional withTemporal "--v8-enable-temporal-support"
0 commit comments