Skip to content

Commit

Permalink
Fixed webkit
Browse files Browse the repository at this point in the history
  • Loading branch information
guillemcordoba committed Aug 30, 2024
1 parent 2ee906b commit e36324a
Showing 1 changed file with 11 additions and 6 deletions.
17 changes: 11 additions & 6 deletions crates/hc-pilot/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -17,12 +17,17 @@
doCheck = false;
buildInputs = inputs.hc-infra.outputs.lib.holochainAppDeps.buildInputs {
inherit pkgs lib;
} ++ self.lib.tauriAppDeps.buildInputs { inherit pkgs lib; };
nativeBuildInputs =
(self.lib.tauriAppDeps.nativeBuildInputs { inherit pkgs lib; })
++ (inputs.hc-infra.outputs.lib.holochainAppDeps.nativeBuildInputs {
inherit pkgs lib;
});
} ++ self.lib.tauriAppDeps.buildInputs {
inherit lib;
pkgs = inputs'.webkitgtknixpkgs.legacyPackages;
};
nativeBuildInputs = (self.lib.tauriAppDeps.nativeBuildInputs {

inherit lib;
pkgs = inputs'.webkitgtknixpkgs.legacyPackages;
}) ++ (inputs.hc-infra.outputs.lib.holochainAppDeps.nativeBuildInputs {
inherit pkgs lib;
});

# TODO: remove this if possible
postPatch = ''
Expand Down

0 comments on commit e36324a

Please sign in to comment.