File tree Expand file tree Collapse file tree 2 files changed +5
-1
lines changed Expand file tree Collapse file tree 2 files changed +5
-1
lines changed Original file line number Diff line number Diff line change @@ -34,6 +34,8 @@ buildGoModule {
3434 "main.version=${ version } "
3535 ] ;
3636
37+ tags = [ ] ++ ( lib . optional withWasm [ "wasmtime" ] ) ++ ( lib . optional withPodman [ "podman" ] ) ;
38+
3739 postInstall = ''
3840 mv $out/bin/cli $out/bin/msgscriptcli
3941 '' ;
Original file line number Diff line number Diff line change @@ -19,7 +19,7 @@ buildGoModule {
1919
2020 subPackages = [ "cmd/server" ] ;
2121
22- nativeBuildInputs = [ pkg-config ] ;
22+ nativeBuildInputs = [ ] ++ ( lib . optional withPodman [ pkg-config ] ) ;
2323
2424 buildInputs =
2525 [ ]
@@ -34,6 +34,8 @@ buildGoModule {
3434 "main.version=${ version } "
3535 ] ;
3636
37+ tags = [ ] ++ ( lib . optional withWasm [ "wasmtime" ] ) ++ ( lib . optional withPodman [ "podman" ] ) ;
38+
3739 doCheck = false ; # Requires networking, will just timeout
3840
3941 postInstall = ''
You can’t perform that action at this time.
0 commit comments