Skip to content

Commit

Permalink
Removed version
Browse files Browse the repository at this point in the history
  • Loading branch information
guillemcordoba committed Feb 22, 2024
1 parent e2f6217 commit 79ccd07
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 5 deletions.
4 changes: 2 additions & 2 deletions flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
outputs = inputs @ { ... }:
{
lib = {
rustZome = { src, crate, holochain, version }:
rustZome = { src, crate, holochain }:
let
# system = builtins.trace holochain holochain.system;
system = holochain.devShells.holonix.system;
Expand All @@ -41,7 +41,7 @@

in
pkgs.callPackage ./nix/zome.nix {
inherit src craneLib crate version;
inherit src craneLib crate;
};
dna = { holochain, dnaManifest, zomes }:
let
Expand Down
5 changes: 2 additions & 3 deletions nix/zome.nix
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,12 @@
stdenv,
binaryen,
craneLib,
src,
version
src
}:

let
wasm = craneLib.buildPackage {
inherit src version;
inherit src;
cargoExtraArgs = "-p ${crate}";
CARGO_BUILD_TARGET = "wasm32-unknown-unknown";
pname = crate;
Expand Down

0 comments on commit 79ccd07

Please sign in to comment.