Skip to content

Commit

Permalink
Renamed argument
Browse files Browse the repository at this point in the history
  • Loading branch information
guillemcordoba committed Mar 4, 2024
1 parent 8b36405 commit 806bf92
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
{
flake = {
lib = {
rustZome = { cratePath, holochain, workspacePath, optimizeWasm ? true, excludedCrates ? [] }:
rustZome = { cratePath, holochain, workspacePath, optimizeWasms ? true, excludedCrates ? [] }:
let
system = holochain.devShells.holonix.system;
pkgs = import inputs.nixpkgs {
Expand All @@ -44,7 +44,7 @@

in
pkgs.callPackage ./nix/zome.nix {
inherit craneLib cratePath excludedCrates workspacePath optimizeWasm;
inherit craneLib cratePath excludedCrates workspacePath optimizeWasms;
};
dna = { holochain, dnaManifest, zomes }:
let
Expand Down
4 changes: 2 additions & 2 deletions nix/zome.nix
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
workspacePath,
cratePath,
excludedCrates,
optimizeWasm
optimizeWasms
}:

let
Expand All @@ -32,7 +32,7 @@ let
doCheck = false;
};
in
if optimizeWasm then
if optimizeWasms then
stdenv.mkDerivation {
name = crate;
buildInputs = [ wasm binaryen ];
Expand Down

0 comments on commit 806bf92

Please sign in to comment.